// Event Listeners
$('.speaker')
    .on('touchstart mousedown', this.onTouchStart)
    .on('touchmove mousemove',  this.onTouchMove)
    .on('touchend mouseup',     this.onTouchEnd);