I have the following HTML/AngularJS code:
<span ng-show="true" ng-repeat="timeRangeObject in timeRangeObjects" ng-if="ifExpression">
<span class="progress-bar progress-bar-{{timeRangeObject.type}}" style="width: {{timeRangeObject.percentage}}%" />
</span>
The result of this code is:
<span>
<span class="progress-bar ...
</span>
<span>
<span class="progress-bar ...
</span>
<span>
<span class="progress-bar ...
</span>
<span>
<span class="progress-bar ...
</span>
but I would absolutely need this one:
<span>
<span class="progr ...
<span class="progr ...
<span class="progr ...
<span class="progr ...
</span>
Is there any possibility to do it like this?
Thanks a lot!