implement a 'clear' method for throttled functions
parent
49d79ee3e2
commit
240b6054fd
www/common
|
@ -310,6 +310,10 @@
|
|||
clearTimeout(to);
|
||||
to = setTimeout(Util.bake(f, Util.slice(arguments)), ms);
|
||||
};
|
||||
g.clear = function () {
|
||||
clearTimeout(to);
|
||||
to = undefined;
|
||||
};
|
||||
return g;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue