Skip to content

Commit f2dc693

Browse files
committed
Fix regression for resizing left panel
1 parent 19af1c0 commit f2dc693

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

templates/html/navtree.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,8 @@ function initNavTree(toroot,relpath,allMembersFile) {
652652
}
653653
});
654654
resizeHeight();
655-
$(window).resize(function() { resizeHeight(); });
655+
lastWidth = $(window).width();
656+
lastHeight = $(window).height();
656657
content.scroll(function() {
657658
navtree_trampoline.updateContentTop(content);
658659
});

0 commit comments

Comments
 (0)