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 scrolling up, the scroll position is out of view. It moves too far.
on Source code Line 55 should be:
if (elY <= pY) scrollTo(pEl, elY-pH); // scroll up
instead of
if (elY <= pY) scrollTo(pEl, elY); // scroll up
The text was updated successfully, but these errors were encountered:
When scrolling up, the scroll position is out of view. It moves too far.
on Source code Line 55 should be:
if (elY <= pY) scrollTo(pEl, elY-pH); // scroll up
instead of
if (elY <= pY) scrollTo(pEl, elY); // scroll up
The text was updated successfully, but these errors were encountered: