Added some comments

This commit is contained in:
perroned 2014-06-26 08:13:29 -07:00
parent 7ac36b1cf6
commit 8971b21a90

View File

@ -18,6 +18,7 @@
{{/if}}
</template>
<!-- Displays and styles an individual message in the chat -->
<template name="message">
<div class="chat-message">
<span class="chat-username">{{from}}</span>
@ -27,6 +28,7 @@
</div>
</template>
<!-- Display the actual message bar -->
<template name="messageBar">
<div>
{{#each getMessagesInChat}}
@ -37,6 +39,7 @@
{{scrollToBottom}}
</template>
<!-- Displays the list of options available -->
<template name="optionsBar">
<div>
<p>Select a person to chat with privately</p>
@ -54,6 +57,7 @@
</div>
</template>
<!-- Display buttons on the chat tab, public, options, and all the private chat tabs -->
<template name="tabButtons">
{{#if getInSession "display_publicPane"}}
<li class="active publicChatTab"><a href="#" data-toggle="tab">Public</a></li>
@ -64,6 +68,7 @@
{{/if}}
</template>
<!-- When done displaying previous chat messages, display the BBB greeting -->
<template name="chatGreeting">
<div class="chatGreeting">
<p>Welcome to {{getInSession "meetingName"}}!</p>