From 0b3095f7ed7deb65af62c44487305b8860b46110 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Fri, 9 Oct 2015 16:01:06 -0400 Subject: [PATCH] (js) Add missing dependency to Contact module --- UI/WebServerResources/js/Contacts/AddressBook.service.js | 2 +- UI/WebServerResources/js/Contacts/Card.service.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/WebServerResources/js/Contacts/AddressBook.service.js b/UI/WebServerResources/js/Contacts/AddressBook.service.js index 088740ce8..9b105b15d 100644 --- a/UI/WebServerResources/js/Contacts/AddressBook.service.js +++ b/UI/WebServerResources/js/Contacts/AddressBook.service.js @@ -64,7 +64,7 @@ angular.module('SOGo.ContactsUI'); } catch(e) { - angular.module('SOGo.ContactsUI', ['SOGo.Common']); + angular.module('SOGo.ContactsUI', ['SOGo.Common', 'SOGo.PreferencesUI']); } angular.module('SOGo.ContactsUI') .factory('AddressBook', AddressBook.$factory); diff --git a/UI/WebServerResources/js/Contacts/Card.service.js b/UI/WebServerResources/js/Contacts/Card.service.js index 4cc9e9fa3..88ac78fdd 100644 --- a/UI/WebServerResources/js/Contacts/Card.service.js +++ b/UI/WebServerResources/js/Contacts/Card.service.js @@ -62,7 +62,7 @@ angular.module('SOGo.ContactsUI'); } catch(e) { - angular.module('SOGo.ContactsUI', ['SOGo.Common']); + angular.module('SOGo.ContactsUI', ['SOGo.Common', 'SOGo.PreferencesUI']); } angular.module('SOGo.ContactsUI') .factory('Card', Card.$factory);