ng-repeat-start error with angular 1.5.0 #14041
Description
Hello
I have an empty array that will use ng-repeat-start to render HTML.But I got some error when click button to add item to array. As below photo
I've tried kind of various to find out.Finally I found below code will cause this error.
app.directive("ngRepeat", ['$animate', function ($animate) {
return function ($scope, $element) {
$animate.enabled($element, false);
};
}]);
At beginning I thought it caused by $animate.enabled. after I empty the function as below code that still error.
app.directive("ngRepeat", [ function () {
return function ($scope, $element) {
};
}]);
Ps:1.This problem just occurs when I upgrade to 1.5.0
2.I use chrome 64 bit.This error will not occurs on IE 11 or IE Edge
simple example
plnkr
Please help the Issue,thank you very much.