mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-06-16 19:30:34 +02:00
fix: scroll to post if theme doesn't have top navbar
This commit is contained in:
@@ -570,7 +570,7 @@ define('navigator', ['forum/pagination', 'components', 'hooks', 'alerts'], funct
|
||||
await hooks.fire('filter:navigator.scroll', { scrollTo, highlight, duration, newIndex });
|
||||
|
||||
const postHeight = scrollTo.outerHeight(true);
|
||||
const navbarHeight = components.get('navbar').outerHeight(true);
|
||||
const navbarHeight = components.get('navbar').outerHeight(true) || 0;
|
||||
const topicHeaderHeight = $('.topic-header').outerHeight(true) || 0;
|
||||
const viewportHeight = $(window).height();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user