Browse Source

Fixed infinite loading bug

master
Igor Zhukov 11 years ago
parent
commit
435615cc43
  1. 4
      app/js/directives.js

4
app/js/directives.js

@ -312,7 +312,9 @@ angular.module('myApp.directives', ['myApp.filters'])
moreNotified = false; moreNotified = false;
$timeout(function () { $timeout(function () {
$(scrollableWrap).trigger('scroll'); if (scrollableWrap.scrollHeight != sh) {
$(scrollableWrap).trigger('scroll');
}
}); });
}); });
}); });

Loading…
Cancel
Save