Skip to content

Instantly share code, notes, and snippets.

@benjamincharity
Created May 27, 2015 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjamincharity/dd472fc0fe4578283bcf to your computer and use it in GitHub Desktop.
Save benjamincharity/dd472fc0fe4578283bcf to your computer and use it in GitHub Desktop.
Use ng-show rather than ng-repeat's filter for better performance.
<input type="text" data-ng-model="searchModel">
<li data-ng-show="(searchModel && ([contact.name.formatted]|filter:searchModel).length)">
{{ ::contact.name.formatted }}
</li
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment