arpo
7/26/2017 - 7:43 AM

Timelock - Prevent something from being done to often.

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);