Skip to content

Instantly share code, notes, and snippets.

@kane-thornwyrd
Created March 7, 2014 17:04
Show Gist options
  • Save kane-thornwyrd/9415371 to your computer and use it in GitHub Desktop.
Save kane-thornwyrd/9415371 to your computer and use it in GitHub Desktop.
I was casually writting a player library for HTML5 audio when…
function getAudioCallback(player, eventName){
var
callbackName = 'on' + eventName.charAt(0).toUpperCase() + eventName.substr(1),
self = this;
;
return _.throttle(_.bind(self.audioCallbacks[callbackName], self, player),500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment