Created
April 22, 2015 21:24
-
-
Save minmaxdata/7ea334753d44acc7171b to your computer and use it in GitHub Desktop.
clever ng-repeat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div ng-repeat="roleFeature in (sortedRoles = (item.role.roleFeatures | orderBy: 'feature.featureCategory.name'))"> | |
<div class="privilegesRoleFeatures"> | |
<div class="profile-hd" ng-if="(sortedRoles[$index].feature.featureCategory.id !== sortedRoles[$index -1].feature.featureCategory.id) && sortedRoles[$index].feature.featureCategory.id != 1" ng-bind="roleFeature.feature.featureCategory.name"></div> | |
<div class="privilegesFeatureName" ng-bind="roleFeature.feature.name"></div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment