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
Noticed if dragging a page left or right very slowly the page can be stopped in the middle of both pages, also on orientation change I have dynamically updated the width of the containers however the page seems to get stuck in the middle of the 2 pages.
However touching the page then fixes the problem.
The text was updated successfully, but these errors were encountered:
patch line 313 to:
if (that.dirX || this.x % that.pageWidth)
I noticed the same problem - it's because of the _move function where it states:
that.dirX = deltaX > 0 ? -1 : deltaX < 0 ? 1 : 0; <-- so dirX may become 0 if touch leaved while stop moves.
Noticed if dragging a page left or right very slowly the page can be stopped in the middle of both pages, also on orientation change I have dynamically updated the width of the containers however the page seems to get stuck in the middle of the 2 pages.
However touching the page then fixes the problem.
The text was updated successfully, but these errors were encountered: