Created
November 10, 2017 17:09
-
-
Save nonsponsored/bb6c6d3d5b05b722a97916a83ee57870 to your computer and use it in GitHub Desktop.
Function: matchMedia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var $minWidthQuery = window.matchMedia('(min-width: 768px)'); | |
| function widthChange($minWidthQuery) { | |
| if ($minWidthQuery.matches ) { | |
| // If match, do something | |
| } | |
| } | |
| $minWidthQuery.addListener(widthChange); | |
| widthChange($minWidthQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment