Skip to content

Instantly share code, notes, and snippets.

@ptb
Created July 31, 2014 18:28
Show Gist options
  • Save ptb/41006a7b55c1321879f7 to your computer and use it in GitHub Desktop.
Save ptb/41006a7b55c1321879f7 to your computer and use it in GitHub Desktop.
onEvent: (event) ->
event.preventDefault()
event.stopPropagation()
return if window.throttle
window.throttle = true
setTimeout (->
window.throttle = false
), 100
# throttled work here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment