From d63d8b4059f662a4fe2da2f8aa4151e759d16fc1 Mon Sep 17 00:00:00 2001 From: Glauco Vinicius Date: Wed, 8 Apr 2015 20:25:00 -0300 Subject: #363 [Luiz, Glauco] Trash Icon is not appearing for mails in Inbox anymore --- web-ui/app/js/mail_list/ui/mail_item_factory.js | 6 ++++-- web-ui/app/js/views/templates.js | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'web-ui/app/js') diff --git a/web-ui/app/js/mail_list/ui/mail_item_factory.js b/web-ui/app/js/mail_list/ui/mail_item_factory.js index 87a883b0..3c815401 100644 --- a/web-ui/app/js/mail_list/ui/mail_item_factory.js +++ b/web-ui/app/js/mail_list/ui/mail_item_factory.js @@ -26,12 +26,14 @@ define( var MAIL_ITEM_TYPE = { 'drafts': DraftItem, - 'sent': SentItem + 'sent': SentItem, + 'trash': GenericMailItem }; var TEMPLATE_TYPE = { 'drafts': 'draft', - 'sent': 'sent' + 'sent': 'sent', + 'trash': 'trash' }; var createAndAttach = function (nodeToAttachTo, mail, currentMailIdent, currentTag, isChecked) { diff --git a/web-ui/app/js/views/templates.js b/web-ui/app/js/views/templates.js index 470c6e51..64e269ca 100644 --- a/web-ui/app/js/views/templates.js +++ b/web-ui/app/js/views/templates.js @@ -41,7 +41,8 @@ define(['hbs/templates'], function (templates) { fullView: window.Pixelated['app/templates/mails/full_view.hbs'], mailActions: window.Pixelated['app/templates/mails/mail_actions.hbs'], draft: window.Pixelated['app/templates/mails/draft.hbs'], - sent: window.Pixelated['app/templates/mails/sent.hbs'] + sent: window.Pixelated['app/templates/mails/sent.hbs'], + trash: window.Pixelated['app/templates/mails/trash.hbs'] }, mailActions: { actionsBox: window.Pixelated['app/templates/mail_actions/actions_box.hbs'], -- cgit v1.2.3