diff --git a/public/src/modules/navigator.js b/public/src/modules/navigator.js index 0fb1a7f368..93dc81ff06 100644 --- a/public/src/modules/navigator.js +++ b/public/src/modules/navigator.js @@ -143,8 +143,10 @@ define('navigator', ['forum/pagination', 'components'], function(pagination, com threshold = 0; } else { var anchorEl = components.get('post/anchor', index - 1); - var anchorRect = anchorEl.get(0).getBoundingClientRect(); - threshold = anchorRect.top; + if (anchorEl.length) { + var anchorRect = anchorEl.get(0).getBoundingClientRect(); + threshold = anchorRect.top; + } } }