Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Created March 16, 2018 10:53
Show Gist options
  • Save carolina-vallejo/ba963ab9fa4f17225ed4336566103f6f to your computer and use it in GitHub Desktop.
Save carolina-vallejo/ba963ab9fa4f17225ed4336566103f6f to your computer and use it in GitHub Desktop.
is small is mobile
var isSmall = function() {
if (window.matchMedia('(max-width: ' + w_mobile + 'px)').matches) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment