Last active
February 6, 2019 23:28
-
-
Save cvan/a6c68f6081c7a2ba39c2f49d2b7ee506 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 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