bigbluebutton-Github/bigbluebutton-html5/app/client/verto.html

23 lines
1.5 KiB
HTML
Raw Normal View History

2015-09-16 00:34:59 +08:00
<template name="vertoDeskshareMenu">
<fieldset class="desktopSettingsFieldset">
<legend>Deskshare Options</legend>
{{#if getInSession "chromeExtensionIsInstalled"}}
{{#if getInSession "sharingMyScreen"}}
{{> makeButton id="screenshareHide" btn_class="screenshareHide vertoButton settingsButton" i_class="fi-monitor" rel="tooltip" data_placement="bottom" title="Stop sharing your screen"}}
{{else}}
{{> makeButton id="screenshareShow" btn_class="screenshareShow vertoButton settingsButton" i_class="fi-monitor" rel="tooltip" data_placement="bottom" title="Share your screen"}}
{{/if}}
{{else}}
2015-10-17 00:32:34 +08:00
{{! clicking this will automatically start installation of the extension through the webstore}}
{{> makeButton id="installChromeExtension" btn_class="" label="Install BBB-DS" rel="tooltip" data_placement="bottom" title="Install BigBlueButton Deskshare Extension"}}
2015-10-17 00:32:34 +08:00
{{! Provide the option to visit the webstore for the extension}}
<br/><a href="https://chrome.google.com/webstore/detail/---------------------" target="_blank">Install BigBlueButton Deskshare Extension</a>
{{/if}}
</fieldset>
2015-09-16 00:34:59 +08:00
</template>
2015-09-05 03:27:46 +08:00
<template name="vertoWebcamMenu">
2015-10-09 04:21:16 +08:00
<!-- {{> makeButton id="webcamShow" btn_class="webcamShow vertoButton settingsButton" i_class="fi-camera" rel="tooltip" data_placement="bottom" title="Share your webcam"}} -->
<!-- {{> makeButton id="webcamHide" btn_class="webcamHide vertoButton settingsButton" i_class="fi-camera" rel="tooltip" data_placement="bottom" title="Stop sharing your webcam"}} -->
2015-09-05 03:27:46 +08:00
</template>