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

15 lines
491 B
CoffeeScript
Raw Normal View History

2014-08-20 04:22:29 +08:00
Template.whiteboard.rendered = ->
2014-08-21 05:17:18 +08:00
$(window).resize( ->
height = $('#whiteboard').height()
console.log "height = #{height}"
$('#whiteboard-paper').height((height-$("#whiteboard-navbar").height()-10)+'px')
$('#whiteboard-paper').width($('#whiteboard-navbar').width())
2014-08-20 04:22:29 +08:00
2014-08-21 05:17:18 +08:00
# $('#svggroup').html('')
2014-08-20 04:22:29 +08:00
2014-08-21 05:17:18 +08:00
wpm = Template.slide.whiteboardPaperModel
wpm.clearCursor()
2014-09-23 05:13:10 +08:00
Template.slide.createWhiteboardPaper (wpm) ->
Template.slide.displaySlide wpm
2014-08-21 05:17:18 +08:00
);