From e6e34ae053595d0b69a03a1f5b5c524b647bdbb7 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 3 Sep 2015 10:05:25 -0400 Subject: [PATCH] (js) Don't show progress indicator in dry mode --- UI/WebServerResources/js/Contacts/AddressBook.service.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UI/WebServerResources/js/Contacts/AddressBook.service.js b/UI/WebServerResources/js/Contacts/AddressBook.service.js index 3e88988a7..6638fb711 100644 --- a/UI/WebServerResources/js/Contacts/AddressBook.service.js +++ b/UI/WebServerResources/js/Contacts/AddressBook.service.js @@ -304,7 +304,8 @@ AddressBook.prototype.$filter = function(search, options, excludedCards) { var _this = this; - this.$isLoading = true; + if (!options || !options.dry) + this.$isLoading = true; return AddressBook.$Preferences.ready().then(function() { if (options) {