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

5 lines
149 B
CoffeeScript
Raw Normal View History

2014-06-19 21:29:48 +08:00
Template.chatbar.helpers
2014-06-20 01:52:08 +08:00
getMessagesInChat: ->
c = Chats.findOne {chatId: Session.get("meetingId") }
2014-06-23 21:21:03 +08:00
if c? then c.messages else []