Created
September 13, 2018 01:31
-
-
Save marcnewport/9fdf79b4c59d54a7026ab4a9658bde16 to your computer and use it in GitHub Desktop.
Revisions
-
marcnewport created this gist
Sep 13, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ // media query event handler if (window.matchMedia) { const mq = window.matchMedia("(min-width: 500px)"); mq.addListener(WidthChange); WidthChange(mq); } // media query change function WidthChange(mq) { if (mq.matches) { // window width is at least 500px } else { // window width is less than 500px } }