update to v1.8.8

This commit is contained in:
Daan Leijen 2025-01-03 17:56:15 -08:00
parent a0a6ad3cf9
commit 98699c983a
36 changed files with 694 additions and 433 deletions

View file

@ -122,9 +122,9 @@ function initNavTree(toroot,relpath) {
if (ancParent.hasClass('memItemLeft') || ancParent.hasClass('memtitle') ||
ancParent.hasClass('fieldname') || ancParent.hasClass('fieldtype') ||
ancParent.is(':header')) {
pos = ancParent.position().top;
pos = ancParent.offset().top;
} else if (anchor.position()) {
pos = anchor.position().top;
pos = anchor.offset().top;
}
if (pos) {
const dcOffset = docContent.offset().top;