Skip to content

Instantly share code, notes, and snippets.

@marcus-at-localhost
Created December 23, 2016 23:09
Show Gist options
  • Save marcus-at-localhost/1ebd5556698ea6d08adccbac4ee13e50 to your computer and use it in GitHub Desktop.
Save marcus-at-localhost/1ebd5556698ea6d08adccbac4ee13e50 to your computer and use it in GitHub Desktop.
matchMedia("screen and (min-width:40em)").addListener(function(mql) {
if(mql.matches) {
// do something when matching
}
else {
// do soemthing when no match
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment