diff options
author | Felix Hammerl <fhammerl@thoughtworks.com> | 2016-02-04 11:35:53 +0100 |
---|---|---|
committer | Felix Hammerl <fhammerl@thoughtworks.com> | 2016-02-04 11:35:53 +0100 |
commit | 97dbf261bd8ca9708673fc1c569b3b26ad8cf67c (patch) | |
tree | 425c6d92cd0a062f9ec67827446bec0a15a88a1a /web-ui/app/js/views | |
parent | 54932685e98f772041044f5a3181646e4f61a38f (diff) |
Issue #551 - Show attachment name during upload
Diffstat (limited to 'web-ui/app/js/views')
-rw-r--r-- | web-ui/app/js/views/templates.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web-ui/app/js/views/templates.js b/web-ui/app/js/views/templates.js index f9d944b8..d4185471 100644 --- a/web-ui/app/js/views/templates.js +++ b/web-ui/app/js/views/templates.js @@ -29,6 +29,7 @@ define(['hbs/templates'], function (templates) { feedback: window.Pixelated['app/templates/compose/feedback_box.hbs'], attachmentsList: window.Pixelated['app/templates/compose/attachments_list.hbs'], attachmentItem: window.Pixelated['app/templates/compose/attachment_item.hbs'], + attachmentUploadItem: window.Pixelated['app/templates/compose/attachment_upload_item.hbs'], uploadAttachmentFailed: window.Pixelated['app/templates/compose/upload_attachment_failed.hbs'] }, tags: { @@ -77,6 +78,7 @@ define(['hbs/templates'], function (templates) { Handlebars.registerPartial('attachments_list', Templates.compose.attachmentsList); Handlebars.registerPartial('attachments_upload', Templates.compose.attachmentsList); Handlebars.registerPartial('attachment_item', Templates.compose.attachmentItem); + Handlebars.registerPartial('attachment_upload_item', Templates.compose.attachmentUploadItem); Handlebars.registerPartial('uploadAttachmentFailed', Templates.compose.uploadAttachmentFailed); return Templates; |