Skip to content

Instantly share code, notes, and snippets.

@Tahseenm
Last active August 26, 2017 19:57
Show Gist options
  • Save Tahseenm/5691e9bd81b53792c9dc7d160fcbc892 to your computer and use it in GitHub Desktop.
Save Tahseenm/5691e9bd81b53792c9dc7d160fcbc892 to your computer and use it in GitHub Desktop.
/**
* Check if device has a touch screen
*
* @returns {boolean}
*/
function isTouchDevice() {
return !!(window.ontouchstart && navigator.maxTouchPoints > 0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment