angular-vs-repeat
angular-vs-repeat copied to clipboard
$digest already in progress issue
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.