-
-
Notifications
You must be signed in to change notification settings - Fork 103
Open
Labels
Milestone
Description
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>