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

65 lines
2.7 KiB
HTML
Raw Normal View History

<!-- 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 -->
{{#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"}}
{{/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"}}
{{/if}}
2015-11-06 04:42:47 +08:00
</div>
</fieldset>
</template>
2015-05-07 07:11:59 +08:00
<template name="settingsModal">
<div class="bar topBar">
<p>
2015-05-13 22:24:21 +08:00
<span class="modalTitle">BigBlueButton Settings</span>
</p>
</div>
<div class="settingsBody">
{{> settingsAudio}}
{{> optionsFontSize}}
2015-05-13 22:24:21 +08:00
{{{getBBBSettingsInfo}}}
</div>
2015-05-07 07:11:59 +08:00
<div class="bar bottomBar">
{{> 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>
{{> 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>
</template>