Skip to content

Instantly share code, notes, and snippets.

@notepadwebdev
Last active November 21, 2016 19:14
Show Gist options
  • Save notepadwebdev/930d17218badf55d636f5b6d7ad33830 to your computer and use it in GitHub Desktop.
Save notepadwebdev/930d17218badf55d636f5b6d7ad33830 to your computer and use it in GitHub Desktop.
Event listeners for speaker interaction
// 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