Skip to content

Instantly share code, notes, and snippets.

@LayneSmith
Created May 7, 2015 18:11
Show Gist options
  • Select an option

  • Save LayneSmith/4ae833e77bd9496f9f04 to your computer and use it in GitHub Desktop.

Select an option

Save LayneSmith/4ae833e77bd9496f9f04 to your computer and use it in GitHub Desktop.
if isMobile
function is_touch_device() {
return 'ontouchstart' in window || 'onmsgesturechange' in window;
};
var isMobile = is_touch_device();
if (isMobile){
}else{
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment