drop unnecessary reference to 'window' in Util.throttle

pull/1/head
ansuz 2020-02-13 17:50:17 -05:00
parent 3dc789cbca
commit a172bad30f
1 changed files with 2 additions and 2 deletions

View File

@ -272,8 +272,8 @@
Util.throttle = function (f, ms) {
var to;
var g = function () {
window.clearTimeout(to);
to = window.setTimeout(Util.bake(f, Util.slice(arguments)), ms);
clearTimeout(to);
to = setTimeout(Util.bake(f, Util.slice(arguments)), ms);
};
return g;
};