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')
|
2014-09-23 06:29:37 +08:00
|
|
|
$('#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
|
2014-09-23 05:00:50 +08:00
|
|
|
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
|
|
|
);
|