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
When executed inside a setInterval timed method it seems to stop the timer. Timer doesn't trigger a second time.
[...]
setInterval(function() {
that.updateComponents();
}, 1000);
[...]
updateComponents: function() {
[...]
for(var i = 0; i < that.components.length; ++i) {
[...]
$("div.contentComponent" + i).ellipsis("p");
[...]
}
}
Any further details on my code wanted?
Cheers,
Andreas
The text was updated successfully, but these errors were encountered:
Kk, apparently it's not stopping the setInterval but somehow changing something else so the element in my example is not accessible through jQuery selectors any longer. Did anybody else experience something like that before as well?
When executed inside a setInterval timed method it seems to stop the timer. Timer doesn't trigger a second time.
[...]
setInterval(function() {
that.updateComponents();
}, 1000);
[...]
updateComponents: function() {
[...]
for(var i = 0; i < that.components.length; ++i) {
[...]
$("div.contentComponent" + i).ellipsis("p");
[...]
}
}
Any further details on my code wanted?
Cheers,
Andreas
The text was updated successfully, but these errors were encountered: