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">
|
2015-02-24 04:56:10 +08:00
|
|
|
{{#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}} -->
|
2015-02-24 04:56:10 +08:00
|
|
|
</div>
|
2014-06-24 03:51:54 +08:00
|
|
|
</template>
|