I'm using AngularJS and the repeater to iterate through some results. There's also a filter applied for searching.
There's two conditions that I would want to be able to handle and am looking for the most "angular" way.
The first condition is if there are no results to begin with.
The second condition is if when using the filter, there are no results returned.
I saw this, which seems like it would be adequate and I could create one for each condition. However, is there anyway with native angular directives to handle these conditions, without requiring code in the controller?
Thanks!