summaryrefslogtreecommitdiff
path: root/web-ui/app/js
diff options
context:
space:
mode:
authorFelix Hammerl <fhammerl@thoughtworks.com>2016-04-29 12:02:50 +0200
committerFelix Hammerl <fhammerl@thoughtworks.com>2016-04-29 13:02:48 +0200
commit5cf1451bf3512affb9d84bc9370e250de7793d3f (patch)
tree6b3fe31ceacaf78f3220ffceb18790a89b4ce89e /web-ui/app/js
parent373fbde99b66add1875426983238d5e4a9d46b08 (diff)
Issue #679: Fix CSS and markup for attachments
Diffstat (limited to 'web-ui/app/js')
-rw-r--r--web-ui/app/js/mail_view/ui/attachment_list.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/web-ui/app/js/mail_view/ui/attachment_list.js b/web-ui/app/js/mail_view/ui/attachment_list.js
index ef2960f7..fc4c0544 100644
--- a/web-ui/app/js/mail_view/ui/attachment_list.js
+++ b/web-ui/app/js/mail_view/ui/attachment_list.js
@@ -35,7 +35,7 @@ define(
attachmentUploadItemAbort: '#attachment-upload-item-abort',
attachmentBaseUrl: '/attachment',
attachments: [],
- closeIcon: '.close-icon',
+ closeIcon: '#upload-error-close',
uploadError: '#upload-error',
dismissButton: '#dismiss-button',
uploadFileButton: '#upload-file-button'
@@ -171,8 +171,6 @@ define(
}
}).bind('fileuploadstart', function (e) {
self.trigger(document, events.mail.uploadingAttachment);
- }).bind('fileuploadadd', function (e) {
- $('.attachmentsAreaWrap').show();
});
};