summaryrefslogtreecommitdiffstats
path: root/templates/contactList.html
diff options
context:
space:
mode:
authorAlexander Weidinger <alexwegoo@gmail.com>2016-03-08 00:40:11 +0100
committerHendrik Leppelsack <hendrik@leppelsack.de>2016-03-16 21:09:28 +0100
commit0c2fc1d64ef6286a369a6ced3ea7027d191d569b (patch)
treeb10686c8c9cdc84571394c93ba3e4ab47dac35fc /templates/contactList.html
parenta9cb3dd6d119679fbdfe68d0f1f349a81c4166f4 (diff)
Added search functionality.
Diffstat (limited to 'templates/contactList.html')
-rw-r--r--templates/contactList.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/contactList.html b/templates/contactList.html
index 82fc744d..2068c828 100644
--- a/templates/contactList.html
+++ b/templates/contactList.html
@@ -1,6 +1,6 @@
<button class="app-content-list-button" type="button" name="button" ng-click="ctrl.createContact()">{{ctrl.t.addContact}}</button>
<div class="app-content-list-item"
- ng-repeat="contact in ctrl.contactList = (ctrl.contacts | contactGroupFilter:ctrl.routeParams.gid | orderBy:'fullName()') track by contact.uid()"
+ ng-repeat="contact in ctrl.contactList = (ctrl.contacts | contactGroupFilter:ctrl.routeParams.gid | orderBy:'fullName()' | filter:query) track by contact.uid()"
contact data="contact"
ng-click="setSelected(contact.uid())" ng-class="{active: contact.uid() === selectedContactId}">
</div>