I have the following that goes through xa and prints the qs.a.text values:
<div data-ng-repeat="a in xa"> <div data-ng-bind-html="a.text"></div> </div> <div data-ng-repeat="b in xb"> <div data-ng-bind-html="b.text"></div> </div>
Is there a way that I could combine them something like this:
<div data-ng-repeat="a in xa and xb"> <div data-ng-bind-html="a.text"></div> <div data-ng-bind-html="b.text"></div> </div>
Note that xa and xb are arrays that always contain exactly the same number of elements.
Alan2 source share