forcegraph: fix rendering on hidpi devices

This commit is contained in:
Nils Schneider 2015-04-11 00:53:35 +02:00
parent a6ad9f928a
commit c0ab6b7406

View file

@ -364,8 +364,13 @@ define(["d3"], function (d3) {
}
function resizeCanvas() {
canvas.width = el.offsetWidth
canvas.height = el.offsetHeight
var r = window.devicePixelRatio
canvas.width = el.offsetWidth * r
canvas.height = el.offsetHeight * r
canvas.style.width = el.offsetWidth + "px"
canvas.style.height = el.offsetHeight + "px"
ctx.resetTransform()
ctx.scale(r, r)
redraw()
}