Fix navigation JS error (#3655)

Before, the UP navigation button was generating an error when no article was
selected. The process to navigate to the first element was using the position
of the current element to compute the offset, thus generating said error.
Now, if no article is selected, the first article is used as a fall-back.

See #3654
pull/3656/head
Alexis Degrugillier 3 years ago committed by GitHub
parent 4823e6df11
commit d6a0af6ba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      p/scripts/main.js

@ -1093,7 +1093,7 @@ function init_nav_entries() {
return false;
};
nav_entries.querySelector('.up').onclick = function (e) {
const active_item = document.querySelector('.flux.current'),
const active_item = (document.querySelector('.flux.current') || document.querySelector('.flux')),
windowTop = document.scrollingElement.scrollTop,
item_top = active_item.offsetParent.offsetTop + active_item.offsetTop;

Loading…
Cancel
Save