Is there a way to filter out certain items in an ng-repeat loop?
For instance, consider the following simplified code snippet:
<div class="row" data-ng-repeat="entry in data.feed.entry | orderBy:'gsx$timestamp.$t':true">
{{entry.gsx$jobID.$t}}
</div>
I also have another scope object named exclusionData with a similar structure. I want to exclude any entries from the first ng-repeat if they exist in exclusionData.feed.entry.gsx$jobID.$t.
Alternatively, is there a more efficient way to handle this filtering logic within my controller? Both the data and exclusionData are sourced from separate JSON feeds.