Skip to content

Instantly share code, notes, and snippets.

@tpatch
Created June 8, 2016 02:39
Show Gist options
  • Save tpatch/fcaeafbb5c4dcdf888fe7e192a405a38 to your computer and use it in GitHub Desktop.
Save tpatch/fcaeafbb5c4dcdf888fe7e192a405a38 to your computer and use it in GitHub Desktop.
isMobile: function () {
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
if (width < 600) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment