I have currently added an additional span to accommodate one condition.
<div ng-repeat="(key, resultLinks) in resultGroup.resultLinks">
<div ng-if="key < 4 || viewMore" ng-repeat="(subKey, linksWrap) in resultLinks.linksWrap">
<span ng-if="wWidth > 568 || subKey == 0" ng-repeat="links in linksWrap.links">
{{links.linkName}}
</span>
</div>
</div>
Is there a way to consolidate all the conditions into one div? For example: ng-if="(key < 4 || viewMore) || (wWidth > 568 || subKey == 0)" (something similar but not quite). Can one condition be excluded if another is true somehow?