Skip to content

Instantly share code, notes, and snippets.

@fatuk
Created September 18, 2013 07:56
Show Gist options
  • Save fatuk/6606012 to your computer and use it in GitHub Desktop.
Save fatuk/6606012 to your computer and use it in GitHub Desktop.
isPad
isPad: function(){
var touch = 'ontouchstart' in window;
var desktop = screen.width > 768 && !touch;
return !desktop;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment