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

28 lines
1.8 KiB
CoffeeScript
Raw Normal View History

2014-06-25 02:36:22 +08:00
# Template.messageBar.helpers
# getMessagesInChat: ->
Template.messageBar.getMessagesInChat = [
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message2", timestamp: "1:01pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Sally Sue", contents: "a message3", timestamp: "1:02pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
{chatId:"183f0bf3a0982a127bdb8161e0c44eb696b3e75c-1403552477306", from: "Billy Bob", contents: "a message4", timestamp: "1:03pm"},
]
2014-06-24 21:46:42 +08:00
2014-06-25 21:28:15 +08:00
Template.messageBar.helpers
"scrollToBottom": ->
#$("#chat-messages").scrollTop( $("#chat-public-box").height() )
2014-06-24 21:46:42 +08:00
Template.chatbar.events
"click .publicChatTab": (event) ->
Session.set "display_publicPane", true
2014-06-24 21:46:42 +08:00
"click .optionsChatTab": (event) ->
Session.set "display_publicPane", false
2014-06-24 21:46:42 +08:00