If I have an ng-repeat
directive iterating through a list of lists via a one-time binding, does a nested ng-repeat
through each of the inner lists also need a one-time binding, or is that redundant?
<div ng-repeat="list in ::$ctrl.lists">
<span ng-repeat="item in list">{{item}}</span>
</div>
Do I need to change the inner ng-repeat
to item in ::list
? $ctrl.lists
will never change in any manner.