fix: don't chagne scrollTop if at the top of page

v1.18.x
Barış Soner Uşaklı 4 years ago
parent e118e59ce0
commit 0fa4c11ea6

@ -210,7 +210,9 @@ define('forum/topic/posts', [
html.insertBefore(before); html.insertBefore(before);
// Now restore the relative position the user was on prior to new post insertion // Now restore the relative position the user was on prior to new post insertion
if (scrollTop > 0) {
$(window).scrollTop(scrollTop + ($(document).height() - height)); $(window).scrollTop(scrollTop + ($(document).height() - height));
}
} else { } else {
components.get('topic').append(html); components.get('topic').append(html);
} }

Loading…
Cancel
Save