summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/compose_box.js
diff options
context:
space:
mode:
authorNavaL <mnandri@thoughtworks.com>2015-12-27 15:58:24 +0100
committerNavaL <mnandri@thoughtworks.com>2015-12-29 19:03:43 +0100
commit98082de00c79e764ee489397de9ec818f51f0dba (patch)
tree531709e46643003553d57226ee77740a26d5b18f /web-ui/app/js/mail_view/ui/compose_box.js
parent5dca3fda432c12cd63ab4c8011aa2ea74ce1a771 (diff)
refactoring: moved upload logic out of the attachment icon
Issue #548
Diffstat (limited to 'web-ui/app/js/mail_view/ui/compose_box.js')
-rw-r--r--web-ui/app/js/mail_view/ui/compose_box.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/web-ui/app/js/mail_view/ui/compose_box.js b/web-ui/app/js/mail_view/ui/compose_box.js
index 993cf880..8e03c081 100644
--- a/web-ui/app/js/mail_view/ui/compose_box.js
+++ b/web-ui/app/js/mail_view/ui/compose_box.js
@@ -20,14 +20,13 @@ define(
'views/templates',
'mixins/with_mail_edit_base',
'page/events',
- 'mail_view/data/mail_builder',
- 'mail_view/data/attachment_list'
+ 'mail_view/data/mail_builder'
],
- function (defineComponent, templates, withMailEditBase, events, mailBuilder, attachmentList) {
+ function (defineComponent, templates, withMailEditBase, events, mailBuilder) {
'use strict';
- return defineComponent(composeBox, withMailEditBase, attachmentList);
+ return defineComponent(composeBox, withMailEditBase);
function composeBox() {