From e94bd460a795180c7bf5b45245c89f4c23c37ab6 Mon Sep 17 00:00:00 2001 From: Ryo ONODERA Date: Sat, 12 Dec 2015 09:00:12 +0900 Subject: [PATCH] Remove Firefox workaround The workaround for older Firefox should be removed, because latest supported Firefox 38.4.0/42.0 do not require it. And it has side effect like #1198 or my problem on Kintone on cybozu.com. --- src/Chart.Core.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Chart.Core.js b/src/Chart.Core.js index 5b1beb4e0..07f2c2088 100755 --- a/src/Chart.Core.js +++ b/src/Chart.Core.js @@ -40,10 +40,6 @@ var width = this.width = computeDimension(context.canvas,'Width') || context.canvas.width; var height = this.height = computeDimension(context.canvas,'Height') || context.canvas.height; - // Firefox requires this to work correctly - context.canvas.width = width; - context.canvas.height = height; - width = this.width = context.canvas.width; height = this.height = context.canvas.height; this.aspectRatio = this.width / this.height; -- 2.47.2