Browse Source

Fix #186 - Hide contacts without filter

master
Igor Zhukov 10 years ago
parent
commit
a586925769
  1. 2
      app/js/controllers.js

2
app/js/controllers.js

@ -335,7 +335,7 @@ angular.module('myApp.controllers', []) @@ -335,7 +335,7 @@ angular.module('myApp.controllers', [])
return;
}
if (!hasMore) {
if (!hasMore && !$scope.search.query) {
contactsShown = true;
AppUsersManager.getContacts($scope.search.query).then(function (contactsList) {

Loading…
Cancel
Save