-
-
Notifications
You must be signed in to change notification settings - Fork 106
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
If you enable smooth scrolling via css styles, forward navigation makes a animated smooth scroll to the top of the page when loading the page.
Describe the solution you'd like
I think this scroll should always be instantaneous.
One way to get this is by passing the 'behavior' parameter to the scroll function.
Change this:
wmr/packages/preact-iso/router.js
Line 122 in 9b425c5
| if (wasPush) scrollTo(0, 0); |
To:
if (wasPush) scrollTo({ top: 0, behavior: 'instant' }); Additional context
Relates to #496
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request