pagination fix if only 1 topic

v1.18.x
Baris Soner Usakli 11 years ago
parent e1f016c075
commit 17cee2cb99

@ -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') { if (tid && scrollTo.length) {
animateScroll(); if($('#post-container li.post-row[data-pid="' + pid + '"]').attr('data-index') !== '0') {
animateScroll();
} else {
updateHeader();
}
} }
} }
} }

Loading…
Cancel
Save