Add mobile version to webmail and improvements

This commit is contained in:
Francis Lachapelle
2014-11-27 08:59:29 -05:00
parent 7645e8e721
commit 4ea428d585
9 changed files with 327 additions and 27 deletions
-2
View File
@@ -144,7 +144,6 @@
$scope.setCurrentFolder = function(account, folder) {
$rootScope.currentFolder = folder;
console.debug('setCurrentFolder ' + folder.type + ' ' + account.id + ' ' + encodeUriFilter(folder.path))
$state.go('mail.account.mailbox', { accountId: account.id, mailboxId: encodeUriFilter(folder.path) });
};
@@ -156,7 +155,6 @@
}])
.controller('MailboxCtrl', ['$scope', '$rootScope', '$stateParams', 'stateAccount', 'stateMailbox', '$timeout', '$modal', 'sgFocus', 'sgDialog', 'sgAccount', 'sgMailbox', function($scope, $rootScope, $stateParams, stateAccount, stateMailbox, $timeout, $modal, focus, Dialog, Account, Mailbox) {
console.debug('MailboxCtrl ' + stateMailbox.path);
$scope.account = stateAccount;
$scope.mailbox = stateMailbox;
$rootScope.currentFolder = stateMailbox;