bigbluebutton-Github/labs/meteor-client/client/views/chat/chat_bar.html

14 lines
283 B
HTML
Raw Normal View History

2014-06-19 21:29:48 +08:00
<template name="chatbar">
<div id="chat">
this is the chat<br/><br/>
2014-06-20 01:52:08 +08:00
{{#each getMessagesInChat}}
2014-06-19 21:29:48 +08:00
{{> message}}
{{/each}}
</div>
</template>
<template name="message">
<p>From {{from}}:</p>
<span>&nbsp;&nbsp;&nbsp;&nbsp;{{contents}}</span>
<hr/>
</template>