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

25 lines
1015 B
HTML
Raw Normal View History

2014-06-24 03:51:54 +08:00
<template name="whiteboard">
<div id="{{id}}" {{visibility name}} class="component gradientBar">
<h3 id="whiteboard-navbar" class="title">
{{#if isMobileChromeOrFirefox}}
{{> makeButton btn_class="fullscreenWhiteboardButton" i_class="glyphicon glyphicon-fullscreen"}}
{{/if}}
<span class="ion-easel heading"></span>
{{title}}
2015-05-07 03:45:51 +08:00
{{#if isCurrentUserPresenter}}
<span class="presentationNavigationControls">
2015-05-08 00:17:52 +08:00
<button class="previousSlide ion-arrow-left-a" title="Go to the previous slide"></button>
<button class="nextSlide ion-arrow-right-a" title="Go to the next slide"></button>
2015-05-07 03:45:51 +08:00
</span>
{{/if}}
</h3>
{{#each getCurrentSlide}}
{{> slide}}
{{/each}}
<div id="whiteboard-container">
<div id="whiteboard-paper">
</div>
</div>
</div>
2014-06-24 03:51:54 +08:00
</template>