bigbluebutton-Github/labs/meteor-client/client/views/whiteboard/whiteboard.html

15 lines
300 B
HTML
Executable File

<template name="whiteboard">
{{#if getInSession "display_whiteboard"}}
<p>The whiteboard</p>
{{/if}}
{{#each getCurrenctSlide}}
{{> slide}}
{{/each}}
<div id="whiteboard-paper" style="position: fixed; top: 10%; left: 30%;">
<p>
<!-- {{png}} -->
</p>
</div>
</template>