/ Published in: JavaScript
Expand |
Embed | Plain Text
var lock = (function () { var lock = null; return function () { if (lock != null) return false; lock = setTimeout(function () { lock = null; }, 300); return true; }; })();
You need to login to post a comment.
