Created
July 31, 2014 18:28
-
-
Save ptb/41006a7b55c1321879f7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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