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
On mobile, click or mousedown events also triggers touchstart which triggers the touchmove event handler to be bind multiple times. Then, when navigating, the moveDown or moveUp functions will be called multiple times (# of clicks + 1), that means you'll end up at the different page.
The fix would be to bind the touchmove event only once or to unbind it before binding. Might be also useful to add some updates, etc. I'd like to contribute, but I have no idea when I'll have a free day to look at the issue.
The text was updated successfully, but these errors were encountered:
On mobile,
click
ormousedown
events also triggerstouchstart
which triggers thetouchmove
event handler to be bind multiple times. Then, when navigating, themoveDown
ormoveUp
functions will be called multiple times (# of clicks + 1), that means you'll end up at the different page.The fix would be to bind the
touchmove
event only once or to unbind it before binding. Might be also useful to add some updates, etc. I'd like to contribute, but I have no idea when I'll have a free day to look at the issue.The text was updated successfully, but these errors were encountered: