Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created February 1, 2018 08:13
Show Gist options
  • Save andreasvirkus/7ec04975f9e6f642eb6549df1734b2fe to your computer and use it in GitHub Desktop.
Save andreasvirkus/7ec04975f9e6f642eb6549df1734b2fe to your computer and use it in GitHub Desktop.
Find out (somewhat successfully) whether your user is on a mobile (tablet included) or desktop platform.
const supportsTouch = 'ontouchstart' in window || navigator.msMaxTouchPoints;
const agentSniff = typeof window.orientation !== "undefined" ||
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
export default supportsTouch && agentSniff;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment