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
We have seen an issue where us the animateTop and animateLeft are both false and the done is never set to true, this causes the render loop to run forever and stops the app/freezes
Could you add this at the end to prevent this
if (!animateLeft && !animateTop) {
done = true;
}
The text was updated successfully, but these errors were encountered:
dom7/src/scroll.js
Line 76 in 28b0db3
Hello,
We have seen an issue where us the animateTop and animateLeft are both false and the done is never set to true, this causes the render loop to run forever and stops the app/freezes
Could you add this at the end to prevent this
The text was updated successfully, but these errors were encountered: