Skip to content

Instantly share code, notes, and snippets.

@srtab
Created May 27, 2015 10:20
Show Gist options
  • Save srtab/cb2d984df6c72918c83b to your computer and use it in GitHub Desktop.
Save srtab/cb2d984df6c72918c83b to your computer and use it in GitHub Desktop.
Throttle function
function throttle(func, delay) {
var wait = false;
return function () {
if (!wait) {
func.call();
wait = true;
setTimeout(function () {
wait = false;
}, delay);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment