mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-08-25 17:42:46 +02:00
9 lines
313 B
JavaScript
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);
|
|
};
|
|
}
|