Infinite interval in jquery.throttledresize.js
Opened this issue · 3 comments
MrEd69 commented
Hello, just found out, that the setInterval is called once in jquery.throttledresize.js and clearInterval is never called. So the function is run every 30ms infinitely.
Before it was
$(dummy).animate(
...
$(dummy).stop();
...
);
and now the animate was changed into setInterval, so $(dummy).stop(); should be changed into clearInterval.