summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/forward_box.js
diff options
context:
space:
mode:
authorFelix Hammerl <fhammerl@thoughtworks.com>2016-02-08 17:59:42 +0100
committerFelix Hammerl <fhammerl@thoughtworks.com>2016-02-08 18:10:53 +0100
commit48144118cf0e861ad1ca0ae7900a8cd12d4313db (patch)
treebdb4639d1f18b2975be5953055f4d190b7ba167e /web-ui/app/js/mail_view/ui/forward_box.js
parent3c6b905d7e5b78e521b2e7692e5e32b7b0c226bc (diff)
Revert "Issue #549 - Implemented UI part of remote attachments"
This reverts commit e3939d4c1dff0f152fa13ce8a89f751c79ecace2.
Diffstat (limited to 'web-ui/app/js/mail_view/ui/forward_box.js')
-rw-r--r--web-ui/app/js/mail_view/ui/forward_box.js17
1 files changed, 1 insertions, 16 deletions
diff --git a/web-ui/app/js/mail_view/ui/forward_box.js b/web-ui/app/js/mail_view/ui/forward_box.js
index 3d643b2f..a1b8dc41 100644
--- a/web-ui/app/js/mail_view/ui/forward_box.js
+++ b/web-ui/app/js/mail_view/ui/forward_box.js
@@ -46,29 +46,14 @@ define(
subject: this.attr.subject,
recipients: { to: [], cc: []},
body: viewHelper.quoteMail(mail),
- attachments: this.convertToRemovableAttachments(mail.attachments)
+ attachments: mail.attachments
});
- var self = this;
- this.$node.find('i.remove-icon').bind('click', function(event) {
- var element = $(this);
- var ident = element.closest('li').attr('data-ident');
- self.trigger(document, events.mail.removeAttachment, {ident: ident});
- event.preventDefault();
- });
-
this.on(this.select('subjectDisplay'), 'click', this.showSubjectInput);
this.select('recipientsDisplay').hide();
this.select('recipientsFields').show();
};
- this.convertToRemovableAttachments = function(attachments) {
- return attachments.map(function(attachment) {
- attachment.removable = true;
- return attachment;
- });
- };
-
this.showSubjectInput = function() {
this.select('subjectDisplay').hide();
this.select('subjectInput').show();