Reputation: 119
If in ng-repeat a parent div has "loaded" class i need to hide appropriate child element.
<div ng-repeat="item in array" class="loading loaded"> <div class="hide_it"></div> </div>
Upvotes: 1
Views: 2577
Reputation: 691
.loaded .hide_it{ display: none; }
Upvotes: 5
Reputation: 6245
CSS:
.loaded .hide_it { display: none; }
Upvotes: 3