summaryrefslogtreecommitdiffstats
path: root/js/views/templates/chatview_add_comment.handlebars
blob: 4af7ad0a80454a1e809a15db9d7a714091511172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>