I'm using ng-repeat to display an array, and using the filter. My array has many keys, and I was able to apply filter to one specific key:
ng-repeat="project in projects = (list | filter: { name: filter }) | orderBy: 'name'"
But when I describe a filter, it should display array entries where the string from filter is found either in name or description.
Any suggestions?