bigbluebutton-Github/bigbluebutton-html5/app/client/views/modals/settings.coffee
2015-09-22 09:09:29 -07:00

42 lines
1.3 KiB
CoffeeScript
Executable File

Template.settingsModal.helpers
getBBBSettingsInfo: ->
info = getBuildInformation()
result = "(c) #{info.copyrightYear} BigBlueButton Inc. [build #{info.html5ClientBuild}] - For more information visit #{info.link}"
Template.logoutModal.events
"click #yes": -> userLogout(getInSession("meetingId"), getInSession("userId"))
"click #no": -> $("#logoutModal").foundation('reveal', 'close')
"click .logoutButton": -> $(".tooltip").hide()
Template.settingsAudio.events
"click #exitAudio": -> exitVoiceCall()
"click .joinAudioButton": (event) -> $("#settingsModal").foundation('reveal', 'close')
"click #joinListenOnly": (event) ->
# joinVoiceCall @, isListenOnly: true
joinVoiceCall @, {
# useVideo: true
# useCamera: false
# useMic: false
# useRealMic: false
listenOnly: true
}
"click #joinMicrophone": (event) ->
# joinVoiceCall @, isListenOnly: false
joinVoiceCall @, {
# useVideo: true
# useCamera: false
# useMic: false
# useRealMic: false
joinAudio: true
}
"click #hangupVerto": (event) -> exitVoiceCall()
Template.settingsModal.events
"click .closeSettings": -> setInSession "messageFontSize", getInSession("tempFontSize")
"click #saveSettings": -> $("#settingsModal").foundation('reveal', 'close');