FIX: use '#main' height to check whether screen is full or not

This commit is contained in:
Régis Hanol 2015-11-04 19:41:12 +01:00
parent c1db9da45b
commit ef2f77339a
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() > $("#main").height();
}
};