Don't scroll back to top when changing Photos and Shop products pages
This commit is contained in:
@@ -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()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user