Don't scroll back to top when changing Photos and Shop products pages

This commit is contained in:
2021-11-21 22:43:24 +01:00
parent 8e56d58b30
commit 4c43e1458e
2 changed files with 18 additions and 5 deletions

View File

@@ -117,4 +117,18 @@ export const getPosition = (node, scope?: HTMLElement) => {
top: offsetTop,
left: offsetLeft
}
}
/**
* Scroll back to top after page transition
*/
export const scrollToTop = (delay?: number) => {
const scroll = () => window.scrollTo(0,0)
if (delay && delay > 0) {
setTimeout(scroll, delay)
} else {
scroll()
}
}