mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
fix (firefox): scroll issue on firefox
This commit is contained in:
parent
0f7c4eb2b9
commit
e22b40f6b8
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue