2014-06-24 03:51:54 +08:00
|
|
|
<template name="whiteboard">
|
2015-02-24 04:56:10 +08:00
|
|
|
<h3 id="whiteboard-navbar" class="title">
|
2015-04-01 07:44:16 +08:00
|
|
|
{{#if isMobileChromeOrFirefox}}
|
2015-03-28 08:59:56 +08:00
|
|
|
{{> makeButton btn_class="fullscreenWhiteboardButton" i_class="glyphicon glyphicon-fullscreen"}}
|
|
|
|
{{/if}}
|
2015-04-21 03:41:51 +08:00
|
|
|
<span class="ion-easel heading"></span>
|
2015-04-01 03:04:29 +08:00
|
|
|
{{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>
|
2015-05-08 02:14:47 +08:00
|
|
|
{{presentationProgress}}
|
2015-05-08 00:17:52 +08:00
|
|
|
<button class="nextSlide ion-arrow-right-a" title="Go to the next slide"></button>
|
2015-05-07 03:45:51 +08:00
|
|
|
</span>
|
|
|
|
{{/if}}
|
2015-02-24 04:56:10 +08:00
|
|
|
</h3>
|
|
|
|
{{#each getCurrentSlide}}
|
|
|
|
{{> slide}}
|
|
|
|
{{/each}}
|
|
|
|
<div id="whiteboard-container">
|
|
|
|
<div id="whiteboard-paper">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-05-06 22:52:43 +08:00
|
|
|
</div>
|
2014-06-24 03:51:54 +08:00
|
|
|
</template>
|