mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-07 03:56:55 +03:00
10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
export function preserveScrollForPage(renderFn: () => void) {
|
|
const scrollY = window.scrollY;
|
|
|
|
renderFn();
|
|
|
|
requestAnimationFrame(() => {
|
|
window.scrollTo({ top: scrollY });
|
|
});
|
|
}
|