diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-06-24 20:12:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 00:12:03 +0000 |
commit | b7a73d17964f7f4ae56a313ff64afa94e24efe68 (patch) | |
tree | e21fa11cf438d0ced6c34595cc1ac5bf933f2d6a /ext/js | |
parent | 6229ca06a408aa57bd1edef263f12f77113ff9c8 (diff) |
Fix alt+scroll offset from elements above sticky header (#1131)
Diffstat (limited to 'ext/js')
-rw-r--r-- | ext/js/display/display.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/js/display/display.js b/ext/js/display/display.js index ebd11e0a..b5dd4ba6 100644 --- a/ext/js/display/display.js +++ b/ext/js/display/display.js @@ -97,7 +97,7 @@ export class Display extends EventDispatcher { /** @type {boolean} */ this._historyHasChanged = false; /** @type {?Element} */ - this._navigationHeader = document.querySelector('#navigation-header'); + this._aboveStickyHeader = document.querySelector('#above-sticky-header'); /** @type {import('display').PageType} */ this._contentType = 'clear'; /** @type {string} */ @@ -1516,8 +1516,8 @@ export class Display extends EventDispatcher { } let target = (index === 0 && definitionIndex <= 0) || node === null ? 0 : this._getElementTop(node); - if (this._navigationHeader !== null) { - target -= this._navigationHeader.getBoundingClientRect().height; + if (this._aboveStickyHeader !== null && target !== 0) { + target += this._aboveStickyHeader.getBoundingClientRect().height; } this._windowScroll.stop(); |