Hello,
If possible, please update your angular.js performance test cases with track by $index in each of the ng-repeats in order to even the playing field.
initial-load/angular.html
<tr ng-repeat="person in people track by $index">
<td ng-repeat="column in columns track by $index">
{{person[column]}}
</td>
<td ng-repeat="column in columns track by $index">
{{person[column]}}
</td>
</tr>
syncing-changes/angular.html
<tr ng-repeat="person in people track by $index">
<td ng-repeat="column in columns track by $index">
{{person[column]}}
</td>
<td ng-repeat="column in columns track by $index">
{{person[column]}}
</td>
</tr>
Hello,
If possible, please update your angular.js performance test cases with
track by $indexin each of theng-repeatsin order to even the playing field.initial-load/angular.html
syncing-changes/angular.html