mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
Generates missing popstate events for Firefox when navigating to hash targets on the same page. (#10679)
This commit is contained in:
parent
d4b88c79b2
commit
ca6bb1f31e
2 changed files with 11 additions and 1 deletions
5
.changeset/loud-numbers-notice.md
Normal file
5
.changeset/loud-numbers-notice.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"astro": patch
|
||||
---
|
||||
|
||||
Generates missing popstate events for Firefox when navigating to hash targets on the same page.
|
|
@ -205,7 +205,12 @@ const moveToLocation = (
|
|||
history.scrollRestoration = 'auto';
|
||||
const savedState = history.state;
|
||||
location.href = to.href; // this kills the history state on Firefox
|
||||
history.state || replaceState(savedState, ''); // this restores the history state
|
||||
if (!history.state) {
|
||||
replaceState(savedState, ''); // this restores the history state
|
||||
if (intraPage){
|
||||
window.dispatchEvent(new PopStateEvent('popstate' ));
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (!scrolledToTop) {
|
||||
scrollTo({ left: 0, top: 0, behavior: 'instant' });
|
||||
|
|
Loading…
Add table
Reference in a new issue