We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9e4de6 commit f8b1b8eCopy full SHA for f8b1b8e
src/ui-scroll.js
@@ -356,7 +356,7 @@ angular.module('ui.scroll', [])
356
let updates = updateDOM();
357
358
// We need the item bindings to be processed before we can do adjustment
359
- $scope.$applyAsync(() => $timeout(() => {
+ $scope.$applyAsync(() => {
360
// show elements after data binging has been done
361
updates.inserted.forEach(w => w.element.removeClass('ng-hide'));
362
updates.prepended.forEach(w => w.element.removeClass('ng-hide'));
@@ -378,7 +378,7 @@ angular.module('ui.scroll', [])
378
bindEvents();
379
adapter.calculateProperties();
380
}
381
- }));
+ });
382
383
384
function fetch(rid) {
0 commit comments