Skip to content

Instantly share code, notes, and snippets.

@electerious
Last active January 24, 2017 09:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save electerious/cc46f114753cc2df80a0522e83953d53 to your computer and use it in GitHub Desktop.
Save electerious/cc46f114753cc2df80a0522e83953d53 to your computer and use it in GitHub Desktop.
const hasTouchscreen = () => {
const mobileDevice = (/Android|iPhone|iPad|iPod/i).test(navigator.userAgent || navigator.vendor || window.opera)
const onTouchEnd = ('ontouchend' in document.documentElement)
return (mobileDevice && onTouchEnd)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment