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
There's a little error when you have three stacked pages. If you open the menu and navigate to the second one, then open the menu again, the current page will be over the stacking pages :(
You can correct it changing line 201 to:
nextStackPageIdx_2 = current + 2 < pagesTotal ? current + 2 : ((current + 2) % pagesTotal),
The text was updated successfully, but these errors were encountered:
Hi!
There's a little error when you have three stacked pages. If you open the menu and navigate to the second one, then open the menu again, the current page will be over the stacking pages :(
You can correct it changing line 201 to:
nextStackPageIdx_2 = current + 2 < pagesTotal ? current + 2 : ((current + 2) % pagesTotal),
The text was updated successfully, but these errors were encountered: