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

19 lines
720 B
HTML
Raw Normal View History

2014-06-24 03:51:54 +08:00
<template name="whiteboard">
2015-05-07 14:26:55 +08:00
<div id="{{id}}" {{visibility name}} class="component gradientBar">
{{#each getCurrentSlide}}
{{> slide}}
{{/each}}
<div id="whiteboard-container">
<div id="whiteboard-paper">
</div>
</div>
2015-05-07 14:26:55 +08:00
<!-- {{#if isCurrentUserPresenter}}
<span class="presentationNavigationControls">
<button class="previousSlide ion-arrow-left-a" title="Go to the previous slide"></button>
{{presentationProgress}}
<button class="nextSlide ion-arrow-right-a" title="Go to the next slide"></button>
</span>
{{/if}} -->
</div>
2014-06-24 03:51:54 +08:00
</template>