Is it just me or does ng-repeat DOM inserts not batch. As we all know DOM manipulation is slow and operations should be batched for performance. When using ng-repeat on a collection it should create the DOM elements in memory and then insert them all at once instead of inserting them one at a time.
Is there any advice on how to get this behavior?