Last active
January 24, 2017 09:03
-
-
Save electerious/cc46f114753cc2df80a0522e83953d53 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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