You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
@MrEd69 Ok. If you could share the exact changes, by uploading your modified version, I could fork this repository, commit your changes and do a pull request.
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.
The text was updated successfully, but these errors were encountered: