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

15 lines
300 B
HTML
Raw Normal View History

2014-06-24 03:51:54 +08:00
<template name="whiteboard">
{{#if getInSession "display_whiteboard"}}
<p>The whiteboard</p>
{{/if}}
{{#each getCurrenctSlide}}
{{> slide}}
{{/each}}
2014-07-31 05:31:12 +08:00
<div id="whiteboard-paper" style="position: fixed; top: 10%; left: 30%;">
2014-07-30 23:20:29 +08:00
<p>
<!-- {{png}} -->
2014-07-30 23:20:29 +08:00
</p>
</div>
2014-06-24 03:51:54 +08:00
</template>