Skip to content

Instantly share code, notes, and snippets.

@cvan
Last active February 6, 2019 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cvan/a6c68f6081c7a2ba39c2f49d2b7ee506 to your computer and use it in GitHub Desktop.
Save cvan/a6c68f6081c7a2ba39c2f49d2b7ee506 to your computer and use it in GitHub Desktop.
const isTouchSupported = 'ontouchstart' in window;
const events = {
start: isTouchSupported ? 'touchstart' : 'mousedown',
move: isTouchSupported ? 'touchmove' : 'mousemove',
end: isTouchSupported ? 'touchend' : 'mouseup'
};
window.addEventListener(events.start, () => {
// Handle `touchstart`/`mousedown`.
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment