2015-05-07 10:41:58 +08:00
|
|
|
Template.bbbSettingsInfo.helpers
|
|
|
|
getBBBSettingsInfo: ->
|
|
|
|
info = getBuildInformation()
|
2015-05-07 14:26:40 +08:00
|
|
|
result = "(c) #{info.copyrightYear} BigBlueButton Inc. [build #{info.html5ClientBuild}] - For more information visit #{info.link}"
|
2015-05-07 10:41:58 +08:00
|
|
|
|
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()
|
|
|
|
|
2015-05-12 22:48:11 +08:00
|
|
|
"click .joinAudioButton": (event) ->
|
|
|
|
$("#settingsModal").foundation('reveal', 'close')
|
|
|
|
|
2015-05-07 10:41:58 +08:00
|
|
|
Template.settingsCloseButton.events
|
|
|
|
"click #closeSettings": ->
|
|
|
|
setInSession "messageFontSize", getInSession("tempFontSize")
|
2015-05-07 07:11:59 +08:00
|
|
|
|
2015-05-07 10:41:58 +08:00
|
|
|
"click #saveSettings": ->
|
|
|
|
$("#settingsModal").foundation('reveal', 'close');
|