fix (firefox): scroll issue on firefox

This commit is contained in:
MickaelK 2025-05-22 22:04:56 +10:00
parent 0f7c4eb2b9
commit e22b40f6b8

View file

@ -136,7 +136,7 @@ async function ctrlNavigationPane(render, { $sidebar, nRestart }) {
if (checkVisible($active) === false) {
$active.offsetTop < window.innerHeight
? $sidebar.firstChild.scrollTo({ top: 0, behavior: "smooth" })
: $active.scrollIntoView({ behavior: "smooth" });
: $active.scrollIntoView({ behavior: "smooth", block: "nearest" });
}
} catch (err) {}