Skip to content

Instantly share code, notes, and snippets.

@dan-diaz
Created March 21, 2014 19:49
Show Gist options
  • Select an option

  • Save dan-diaz/9694781 to your computer and use it in GitHub Desktop.

Select an option

Save dan-diaz/9694781 to your computer and use it in GitHub Desktop.
event throttler, to prevent rapid firing of potentially heavy functions.
var throttler = function(func) {
var throttle;
window.addEventListener('resize',function(){
clearTimeout(throttle);
throttle = setTimeout(func, 200);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment