Skip to content

Instantly share code, notes, and snippets.

@kfiil
Created January 12, 2015 20:38
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 kfiil/df5eca8a386d167e3ce3 to your computer and use it in GitHub Desktop.
Save kfiil/df5eca8a386d167e3ce3 to your computer and use it in GitHub Desktop.
AngularJS kursus, filters
<input type="checkbox" ng-model="strict"><br>
<table id="searchObjResults">
<tr><th>Name</th><th>Phone</th></tr>
<tr ng-repeat="friendObj in friends | filter:search:strict">
<td>{{friendObj.name}}</td>
<td>{{friendObj.phone}}</td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment