Last active
November 21, 2016 19:14
-
-
Save notepadwebdev/930d17218badf55d636f5b6d7ad33830 to your computer and use it in GitHub Desktop.
Event listeners for speaker interaction
This file contains 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
// Event Listeners | |
$('.speaker') | |
.on('touchstart mousedown', this.onTouchStart) | |
.on('touchmove mousemove', this.onTouchMove) | |
.on('touchend mouseup', this.onTouchEnd); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment