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
The scrollDown method in main.js is supposed to scroll to the new text after making a choice. This normally does require, well, scrolling down. But it can sometimes require scrolling up instead, if there are enough choices that the top of the first choice is above the browser viewport. When this happens it tries to scroll upward forever, preventing the user from accessing anything lower on the page.
To reproduce, have a long enough list of choices and a high enough browser zoom that the top of the choice list is above the viewport. Click any choice. The scroll bar will become stuck at the top of the page else, preventing the user from seeing anything else.
The broken line is:
var duration = 300 + 300*dist/100;
This results in a negative duration when dist is negative, which means the animation never ends. It should instead use Math.abs(dist).
The text was updated successfully, but these errors were encountered:
Here to +1 both the broken line and the proposed fix.
The use case for me is for adding images to ink choices, which extends their height and is causing a frequent scroll lock. This is especially prevalent on mobile devices. It's easy to test by shrinking the window height on desktop to smaller than the total height of the choices.
The scrollDown method in main.js is supposed to scroll to the new text after making a choice. This normally does require, well, scrolling down. But it can sometimes require scrolling up instead, if there are enough choices that the top of the first choice is above the browser viewport. When this happens it tries to scroll upward forever, preventing the user from accessing anything lower on the page.
To reproduce, have a long enough list of choices and a high enough browser zoom that the top of the choice list is above the viewport. Click any choice. The scroll bar will become stuck at the top of the page else, preventing the user from seeing anything else.
The broken line is:
This results in a negative duration when
dist
is negative, which means the animation never ends. It should instead useMath.abs(dist)
.The text was updated successfully, but these errors were encountered: