(js) Add missing dependency to Contact module

This commit is contained in:
Francis Lachapelle
2015-10-09 16:01:06 -04:00
parent e88af22708
commit 0b3095f7ed
2 changed files with 2 additions and 2 deletions
@@ -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);
@@ -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);