dont infinite load if there are no topics loaded

v1.18.x
Baris Usakli 12 years ago
parent 99ac782875
commit 8bc60be7c3

@ -205,7 +205,7 @@
var windowHeight = document.body.offsetHeight - $(window).height(),
half = windowHeight / 2;
if (document.body.scrollTop > half && !app.infiniteLoaderActive) {
if (document.body.scrollTop > half && !app.infiniteLoaderActive && $('#post-container').children().length) {
app.loadMorePosts(tid);
}
});

Loading…
Cancel
Save