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
In a navigation flow where navToEnd and navToLast are invoked (i.e. no --start or .lastdone present), navToLast goes into an infinite loop.
This seems to be due to a recent change in the web app's behavior.
navToLast starts by entering the Detail/Photo page by sending a \n
This assumes that an element on the Main/Album page is selected/focused.
What has changed is that the action of scrolling (navToEnd) no longer preserves a selected item, so that the \n in navToLast has no effect, and goes into an infinite loop.
Would like to know if I am the only one experiencing this.
The text was updated successfully, but these errors were encountered:
I created a PR 3 which addresses the issue but also replaces the CaptureScreenshot with a DOM Query in NavToEnd.
That PR adresses this issue by explicitly setting the focus on an image element at the end of navToEnd, which restores the requirements/assumptions of navToLast
In a navigation flow where
navToEnd
andnavToLast
are invoked (i.e. no--start
or.lastdone
present), navToLast goes into an infinite loop.This seems to be due to a recent change in the web app's behavior.
navToLast
starts by entering the Detail/Photo page by sending a\n
What has changed is that the action of scrolling (
navToEnd
) no longer preserves a selected item, so that the\n
innavToLast
has no effect, and goes into an infinite loop.Would like to know if I am the only one experiencing this.
The text was updated successfully, but these errors were encountered: