1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-25 17:42:46 +02:00
Files
BezierInfo-2/docs/js/site/fix-scroll.js
2020-09-13 14:52:18 -07:00

9 lines
313 B
JavaScript

// Firefox seems to mess up on slider input immediately after navigating.
// Even weirder, forcing a scroll once the page is done loading fixes it...
if (navigator.userAgent.includes(`Firefox/`)) {
window.onload = function () {
window.scrollBy(0, 1);
setTimeout(() => window.scrollBy(0, -1), 1);
};
}