Skip to content

Instantly share code, notes, and snippets.

@arpo
Created July 26, 2017 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arpo/cfff1e36f30605ae806dac6d913e5fcf to your computer and use it in GitHub Desktop.
Save arpo/cfff1e36f30605ae806dac6d913e5fcf to your computer and use it in GitHub Desktop.
Timelock - Prevent something from being done to often.
var _timelock;
if (_timelock) window.clearTimeout(_timelock);
_timelock = window.setTimeout(function () {
console.log('My timeout function');
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment