bigbluebutton-Github/labs/meteor-client/app/client/views/users/user_item.coffee
2014-11-21 17:36:21 +00:00

12 lines
467 B
CoffeeScript
Executable File

Template.displayUserIcons.events
'click .muteIcon': (event) ->
toggleMic @
'click .raisedHandIcon': (event) ->
# 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"
Meteor.call('userLowerHand', getInSession("meetingId"), @userId, getInSession("userId"), getInSession("authToken"))