kamilkp / angular-vs-repeat

Virtual Scroll for AngularJS ngRepeat directive
http://kamilkp.github.io/angular-vs-repeat/
MIT License
818 stars 228 forks source link

$digest already in progress issue #158

Open yahely opened 7 years ago

yahely commented 7 years ago

Hi, I'm using angular-vs-repeat on my app, but I got this error : $digest already in progress issue... This appear in firefox browser when you resize the window. I found how to fixed it. By: if (updateInnerCollection()) { $scope.$applyAsync(); }

Instead of , $scope.$apply(); in your code.

It will be very helpful if you will change that. Thanks.