pagination fix if only 1 topic

This commit is contained in:
Baris Soner Usakli
2014-02-18 12:40:13 -05:00
parent e1f016c075
commit 17cee2cb99

View File

@@ -1195,8 +1195,12 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
});
}
if (tid && scrollTo.length && $('#post-container li.post-row[data-pid="' + pid + '"]').attr('data-index') !== '0') {
animateScroll();
if (tid && scrollTo.length) {
if($('#post-container li.post-row[data-pid="' + pid + '"]').attr('data-index') !== '0') {
animateScroll();
} else {
updateHeader();
}
}
}
}