From a8f3d31bd41def7a334b5a2f4f260ec77ce76d2c Mon Sep 17 00:00:00 2001 From: Duda Dornelles Date: Thu, 16 Oct 2014 17:08:55 +0200 Subject: Making sure only the tags are shown in the mail when you update the mail tags. Also, disabling the tags feature toggles --- web-ui/app/js/services/mail_service.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'web-ui/app/js/services/mail_service.js') diff --git a/web-ui/app/js/services/mail_service.js b/web-ui/app/js/services/mail_service.js index b773bd8b..af957a7b 100644 --- a/web-ui/app/js/services/mail_service.js +++ b/web-ui/app/js/services/mail_service.js @@ -58,7 +58,7 @@ define( data: JSON.stringify({newtags: data.tags}) }).done(function (data) { that.refreshResults(); - $(document).trigger(events.mail.tags.updated, { ident: ident, tags: data }); + $(document).trigger(events.mail.tags.updated, { ident: ident, tags: data.tags }); }) .fail(function (resp) { var msg = i18n('Could not update mail tags'); @@ -263,10 +263,7 @@ define( this.after('initialize', function () { that = this; - if (features.isEnabled('tags')) { - this.on(events.mail.tags.update, this.updateTags); - } - + this.on(events.mail.tags.update, this.updateTags); this.on(events.mail.draftReply.want, this.wantDraftReplyForMail); this.on(events.mail.want, this.fetchSingle); this.on(events.mail.read, this.readMail); -- cgit v1.2.3