bigbluebutton-Github/bigbluebutton-html5/app/client/views/modals/modals.coffee

22 lines
696 B
CoffeeScript
Raw Normal View History

Template.bbbSettingsInfo.helpers
getBBBSettingsInfo: ->
info = getBuildInformation()
result = "(c) #{info.copyrightYear} BigBlueButton Inc. [build #{info.bbbServerVersion} - #{info.dateOfBuild}] - For more information visit #{info.link}"
2015-05-07 07:11:59 +08:00
Template.settingsAudio.events
"click #joinMicrophone": (event) ->
introToAudio @, isListenOnly: false
"click #joinListenOnly": (event) ->
introToAudio @, isListenOnly: true
"click #exitAudio": ->
exitVoiceCall()
Template.settingsCloseButton.events
"click #closeSettings": ->
setInSession "messageFontSize", getInSession("tempFontSize")
2015-05-07 07:11:59 +08:00
"click #saveSettings": ->
$("#settingsModal").foundation('reveal', 'close');