summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/compose_box.js
diff options
context:
space:
mode:
authorNavaL <mnandri@thoughtworks.com>2016-01-11 16:55:25 +0100
committerNavaL <mnandri@thoughtworks.com>2016-01-11 16:56:29 +0100
commit058d14143c179d9923eea433fc63094f4f9059aa (patch)
treecef20e046a64cb44ad0d882465411335cf049007 /web-ui/app/js/mail_view/ui/compose_box.js
parent64106a5d6b589616db5ddd07f383b74c66e0b39d (diff)
merging attachment_list ui and data, and making it into a mixin
Issue #573
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 48a7c23f..101dc939 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() {