(js) Add missing dependency to Contact module

pull/110/head
Francis Lachapelle 2015-10-09 16:01:06 -04:00
parent e88af22708
commit 0b3095f7ed
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);