FIX: Double load sometimes on topic lists

This commit is contained in:
Robin Ward 2015-09-23 11:48:58 -04:00
parent dcdf76a662
commit 6b48647fc7
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ const ScrollingDOMMethods = {
},
screenNotFull() {
return $(window).height() >= $(document).height();
return $(window).height() > $(document).height();
}
};