Browse Source

Fixed infinite loading bug

master
Igor Zhukov 10 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']) @@ -312,7 +312,9 @@ angular.module('myApp.directives', ['myApp.filters'])
moreNotified = false;
$timeout(function () {
$(scrollableWrap).trigger('scroll');
if (scrollableWrap.scrollHeight != sh) {
$(scrollableWrap).trigger('scroll');
}
});
});
});

Loading…
Cancel
Save