ReplyJun 7, 2017A bit hacky. Check out my response on "track by"Angular ng-repeat render delay
CommentJun 7, 20171Performance can be improved by using ng-repeat's "track by $index". Angular is watching too many items on the DOM so you will see slow rendering. The "track by" speeds it up so you won't get combined arrays.Angular ng-repeat render delay