summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2017-10-28 13:27:09 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2017-11-21 15:55:04 +0100
commit3798345fc5b478166f88f96583ce290f35d67c90 (patch)
treec7bc665eb43039d29641b23210824578f6322490 /templates
parent534b54395e1da1e49c2641a348204efc7893ceae (diff)
Fix key storage
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/contactList.html.orig18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/contactList.html.orig b/templates/contactList.html.orig
new file mode 100644
index 00000000..f9b4d00d
--- /dev/null
+++ b/templates/contactList.html.orig
@@ -0,0 +1,18 @@
+<div class="contacts-list" ng-class="{loading: ctrl.loading, 'mobile-show': ctrl.show}">
+ <div class="app-content-list-item"
+<<<<<<< HEAD
+ ng-repeat="contact in ctrl.filteredContacts = (ctrl.contactList | contactGroupFilter:ctrl.routeParams.gid | localeOrderBy:ctrl.sortBy | filter:query | limitTo:ctrl.limitTo ) as filtered track by contact.uid()"
+=======
+ ng-repeat="contact in ctrl.filteredContacts = (ctrl.contactList | filter:{'data':{'addressBook':{'enabled': true}}} | contactGroupFilter:ctrl.routeParams.gid | localeOrderBy:ctrl.sortBy | filter:query | limitTo:ctrl.limitTo) as filtered track by contact.uid()"
+>>>>>>> Filter out disabled ab
+ contact data="contact"
+ ng-click="setSelected(contact.uid())"
+ ng-class="{active: contact.uid() === ctrl.getSelectedId()}">
+ </div>
+ <div ng-show="!ctrl.filteredContacts.length && !ctrl.loading && ctrl.searchTerm !== ''">
+ <div id="emptycontent" class="emptycontent-search">
+ <div class="icon-search"></div>
+ <h2>{{ctrl.t.emptySearch}}</h2>
+ </div>
+ </div>
+</div>