2014-09-24 04:40:59 +08:00
|
|
|
Template.displayUserIcons.events
|
|
|
|
'click .raisedHandIcon': (event) ->
|
2014-09-25 03:55:55 +08:00
|
|
|
# the function to call 'userLowerHand'
|
|
|
|
# the meeting id
|
|
|
|
# the _id of the person whose land is to be lowered
|
|
|
|
# the userId of the person who is lowering the hand
|
|
|
|
console.log "lower hand- client click handler"
|
2014-10-08 03:28:54 +08:00
|
|
|
Meteor.call('userLowerHand', getInSession("meetingId"), @_id, getInSession("userId"), getInSession("DBID") )
|
2014-09-24 04:56:57 +08:00
|
|
|
|
|
|
|
'click .muteIcon': (event) ->
|
|
|
|
toggleMic @
|