summaryrefslogtreecommitdiffstats
path: root/js/views/templates/chatview_add_comment.handlebars
diff options
context:
space:
mode:
Diffstat (limited to 'js/views/templates/chatview_add_comment.handlebars')
-rw-r--r--js/views/templates/chatview_add_comment.handlebars19
1 files changed, 19 insertions, 0 deletions
diff --git a/js/views/templates/chatview_add_comment.handlebars b/js/views/templates/chatview_add_comment.handlebars
new file mode 100644
index 000000000..4af7ad0a8
--- /dev/null
+++ b/js/views/templates/chatview_add_comment.handlebars
@@ -0,0 +1,19 @@
+<div class="newCommentRow comment">
+ <div class="authorRow currentUser">
+ <div class="avatar" data-user-id="{{actorId}}"></div>
+ {{#if actorId}}
+ <div class="author">{{actorDisplayName}}</div>
+ {{else}}
+ <div class="guest-name"></div>
+ {{/if}}
+ </div>
+ <form class="newCommentForm">
+ <div contentEditable="true" class="message" data-placeholder="{{newMessagePlaceholder}}">{{message}}</div>
+ <input class="submit icon-confirm has-tooltip" type="submit" value="" title="{{submitText}}"/>
+ <div class="submitLoading icon-loading-small hidden"></div>
+ {{#if actorId}}
+ <button class="share icon-add has-tooltip" title="{{shareText}}"></button>
+ <div class="shareLoading icon-loading-small hidden"></div>
+ {{/if}}
+ </form>
+</div>