(fix) fixed icons and controller regarding mailbox delegates

This commit is contained in:
Ludovic Marcotte
2015-07-04 07:51:20 -04:00
parent 01750fa98e
commit 3bfc47d105
3 changed files with 6 additions and 7 deletions
@@ -33,16 +33,15 @@
escapeToClose: true,
locals: {
User: User,
account: account,
$q: $q
account: account
}
});
/**
* @ngInject
*/
MailboxDelegationController.$inject = ['$scope', '$mdDialog', 'User', 'account', '$q'];
function MailboxDelegationController($scope, $mdDialog, User, account, $q) {
MailboxDelegationController.$inject = ['$scope', '$mdDialog', 'User', 'account'];
function MailboxDelegationController($scope, $mdDialog, User, account) {
var vm = this;
vm.users = account.delegates;