You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
The text was updated successfully, but these errors were encountered:
Cool. I will do that. I have tried the initial-load example with the code and I don't see any difference in performance. Do you see any benefit for updating the initial-load example?
Yeah. You are absolutely correct. I have been super busy with a product I am building Caret and didn't have the time to update the site. I hope soon I will have a little more time to update the chart and other pending tasks.
Hello,
If possible, please update your angular.js performance test cases with
track by $index
in each of theng-repeats
in order to even the playing field.initial-load/angular.html
syncing-changes/angular.html
The text was updated successfully, but these errors were encountered: