set the size of the pdf container using jquery methods

This commit is contained in:
Brian Gough 2014-12-02 11:02:09 +00:00
parent 85750dfeb6
commit 7071ee3540

View file

@ -141,8 +141,8 @@ define [
canvas.height(newHeight + 'px')
canvas.width(newWidth + 'px')
element.canvas[0].height = newHeight
element.canvas[0].width = newWidth
element.canvas.height(newHeight)
element.canvas.width(newWidth)
if pixelRatio != 1
ctx.scale(pixelRatio, pixelRatio)