The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/rocketchat-livechat/app/client/views/room.html

33 lines
759 B

<template name="room">
<div class="livechat-room">
<div class="title" style="background-color:{{color}}">
<div class="toolbar">
{{#unless popoutActive}}
<i class="popout icon-link-ext" title="Open in a new window"></i>
{{/unless}}
</div>
<h1>{{title}}</h1>
</div>
<div class="messages">
<div class="wrapper">
<ul>
{{#each messages}}
{{#nrr nrrargs 'message' .}}{{/nrr}}
{{/each}}
</ul>
</div>
<div class="new-message not">
<span>New messages</span>
</div>
<div class="error">
<span></span>
</div>
</div>
<div class="footer">
<div class="input-wrapper">
<textarea class="input-message" placeholder="Type your message"></textarea>
</div>
</div>
</div>
</template>