Fix bug: incorrect computation for whether list is full.

This commit is contained in:
Marina Samuel 2014-09-12 19:09:00 -04:00
Родитель f3c68b4763
Коммит 9861394608
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -168,7 +168,7 @@ InterestDashboard.prototype = {
_checkListFullAndAppend: function(visitData, category, $scope) {
let screenHeight = ($(window).height() - 195);
let listFull = (visitData.length * parseFloat($('.subtable tr').css("height"))) > screenHeight;
let listFull = ($('#' + category + ' tr').length * parseFloat($('.subtable tr').css("height"))) > screenHeight;
if (!listFull) {
self._appendingVisits = true;
$scope._requestCategoryVisits(category);