2015-05-07 10:41:58 +08:00
|
|
|
<!-- listen only | microphone -->
|
|
|
|
<template name="settingsAudio">
|
|
|
|
<fieldset class="desktopSettingsFieldset">
|
2015-11-06 02:16:35 +08:00
|
|
|
<legend align="center">Audio Options</legend>
|
2015-11-06 04:42:47 +08:00
|
|
|
<div id="audioButtonContainer">
|
|
|
|
{{#if amIInAudio}}
|
|
|
|
{{#if amIListenOnlyAudio}}
|
|
|
|
<!-- display listen only with exit -->
|
|
|
|
{{> makeButton id="exitAudio" btn_class="exitAudio settingsButton joinAudioButton" i_class="ion-volume-mute" rel="tooltip"
|
|
|
|
data_placement="bottom" title="Leave Audio Call"}}
|
|
|
|
{{else}}
|
|
|
|
<!-- display microphone with exit -->
|
|
|
|
{{> makeButton id="exitAudio" btn_class="exitAudio settingsButton joinAudioButton" i_class="ion-volume-mute" rel="tooltip"
|
|
|
|
data_placement="bottom" title="Leave Audio Call"}}
|
|
|
|
{{/if}}
|
2015-05-11 12:43:31 +08:00
|
|
|
{{else}}
|
2015-11-06 04:42:47 +08:00
|
|
|
<!-- display both with join -->
|
2015-11-19 19:55:20 +08:00
|
|
|
{{#if canJoinWithMic}}
|
2015-11-06 04:42:47 +08:00
|
|
|
{{> makeButton id="joinMicrophone" btn_class="joinMicrophone settingsButton joinAudioButton" i_class="fi-microphone"
|
|
|
|
rel="tooltip" data_placement="bottom" title="Join Microphone"}}
|
2015-11-19 19:55:20 +08:00
|
|
|
{{/if}}
|
2015-11-06 04:42:47 +08:00
|
|
|
{{> makeButton id="joinListenOnly" btn_class="joinListenOnly settingsButton joinAudioButton" i_class="fi-volume"
|
|
|
|
rel="tooltip" data_placement="bottom" title="Join Listen only"}}
|
2015-05-07 10:41:58 +08:00
|
|
|
{{/if}}
|
2015-11-06 04:42:47 +08:00
|
|
|
</div>
|
2015-05-07 10:41:58 +08:00
|
|
|
</fieldset>
|
|
|
|
</template>
|
|
|
|
|
2015-05-07 07:11:59 +08:00
|
|
|
<template name="settingsModal">
|
2015-05-27 03:45:48 +08:00
|
|
|
<div class="bar topBar">
|
|
|
|
<p>
|
2015-05-13 22:24:21 +08:00
|
|
|
<span class="modalTitle">BigBlueButton Settings</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
2015-05-27 03:45:48 +08:00
|
|
|
<div class="settingsBody">
|
2015-08-26 02:49:04 +08:00
|
|
|
{{> settingsAudio}}
|
|
|
|
{{> optionsFontSize}}
|
2015-05-13 22:24:21 +08:00
|
|
|
{{{getBBBSettingsInfo}}}
|
|
|
|
</div>
|
2015-05-07 07:11:59 +08:00
|
|
|
|
2015-05-27 03:45:48 +08:00
|
|
|
<div class="bar bottomBar">
|
2015-11-05 07:33:29 +08:00
|
|
|
{{> makeButton id="closeSettings" btn_class="settingsButton vertically-centered" rel="tooltip" title="Close" label="Close"}}
|
2015-05-13 22:24:21 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
2015-05-07 07:11:59 +08:00
|
|
|
|
2015-05-13 22:24:21 +08:00
|
|
|
<template name="logoutModal">
|
|
|
|
<p>Are you sure you want to logout?</p>
|
2015-08-21 22:59:09 +08:00
|
|
|
{{> makeButton id="yes" btn_class="logoutButton" label="Yes"}}
|
|
|
|
{{> makeButton id="no" btn_class="logoutButton" label="No"}}
|
2015-05-07 07:11:59 +08:00
|
|
|
</template>
|
2015-10-24 07:29:24 +08:00
|
|
|
|
|
|
|
<template name="optionsFontSize">
|
|
|
|
<fieldset class="desktopSettingsFieldset">
|
2015-11-06 02:16:35 +08:00
|
|
|
<legend align="center"><span class="chatOptionsText" >Chat Message Font Size</span><br/></legend>
|
2015-10-24 07:29:24 +08:00
|
|
|
<table id="fontSizeTable" align="center">
|
|
|
|
<tr>
|
|
|
|
<td>{{> makeButton id="decreaseFontSize" btn_class="displayButtons" i_class="fi-minus" rel="tooltip" title="Decrease Font Size"}}</td>
|
|
|
|
<td id="displayLabel"><label class="fontSizeLabel" {{messageFontSize}} >Size({{getInSession "messageFontSize"}})</label></td>
|
|
|
|
<td>{{> makeButton id="increaseFontSize" btn_class="displayButtons" i_class="fi-plus" rel="tooltip" title="Increase Font Size"}}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
2015-11-05 07:47:14 +08:00
|
|
|
</template>
|