bigbluebutton-Github/labs/meteor-client/client/views/whiteboard/whiteboard.html
Anton Georgiev 71a062af95 Merge branch 'creating-better-templates' of github.com:perroned/bigbluebutton into creating-better-templates
Conflicts:
	labs/meteor-client/client/globals.coffee
	labs/meteor-client/client/main.coffee
	labs/meteor-client/client/views/whiteboard/whiteboard.html
	labs/meteor-client/client/whiteboard_models/whiteboard_paper.coffee
2014-08-15 15:49:18 +00:00

15 lines
487 B
HTML
Executable File

<template name="whiteboard">
<div id="{{id}}" {{visibility name}} class="component">
<h3 class="title gradientBar"><span class="glyphicon glyphicon-pencil"></span> {{title}}</h3>
<div id="whiteboard-contents">
{{#if getInSession "display_whiteboard"}}
{{#each getCurrentSlide}}
{{> slide}}
{{/each}}
<div id="whiteboard-paper" style="">
</div>
{{/if}}
</div>
</div>
</template>