10 lines
378 B
CoffeeScript
Executable File
10 lines
378 B
CoffeeScript
Executable File
# redraw the whiteboard to adapt to the resized window
|
|
@redrawWhiteboard = () ->
|
|
adjustedDimensions = scaleSlide(getInSession('slideOriginalWidth'), getInSession('slideOriginalHeight'))
|
|
wpm = whiteboardPaperModel
|
|
wpm.clearShapes()
|
|
wpm.clearCursor()
|
|
manuallyDisplayShapes()
|
|
wpm.scale(adjustedDimensions.width, adjustedDimensions.height)
|
|
wpm.createCursor()
|