(js) Simplify Mailbox.prototype.$emptyTrash

pull/100/merge
Francis Lachapelle 2015-08-18 21:16:05 -04:00
parent e5b0596bc9
commit 83fee27ca8
1 changed files with 2 additions and 10 deletions

View File

@ -413,13 +413,9 @@
* @returns a promise of the HTTP operation
*/
Mailbox.prototype.$emptyTrash = function() {
var _this = this,
deferred = Mailbox.$q.defer(),
promise;
var _this = this;
promise = Mailbox.$$resource.post(this.id, 'emptyTrash');
promise.then(function() {
return Mailbox.$$resource.post(this.id, 'emptyTrash').then(function() {
// Remove all messages from the mailbox
_this.$messages = [];
_this.uidsMap = {};
@ -428,11 +424,7 @@
// If we had any submailboxes, lets do a refresh of the mailboxes list
if (angular.isDefined(_this.children) && _this.children.length)
_this.$account.$getMailboxes({reload: true});
}, function(data, status) {
deferred.reject(data);
});
return deferred.promise;
};
/**