From bc8e4651c1ee7ad7f091f02ac68b8a56247f2b4c Mon Sep 17 00:00:00 2001 From: mxtommy Date: Thu, 3 Jun 2021 19:33:56 +0100 Subject: [PATCH] Declare isFixed before it's used (#1) isFixed is used on line 504 before it is declared. Since it is undefined/null when tested, startAngle is not fixed in when plate it the animation target --- lib/RadialGauge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/RadialGauge.js b/lib/RadialGauge.js index d1095b09..f33becbe 100644 --- a/lib/RadialGauge.js +++ b/lib/RadialGauge.js @@ -497,6 +497,7 @@ function drawRadialUnits(context, options) { */ function drawRadialNeedle(context, options) { if (!options.needle) return; + let isFixed = options.animationTarget !== 'needle'; let value = options.ticksAngle < 360 ? drawings.normalizedValue(options).indented : options.value; @@ -522,7 +523,6 @@ function drawRadialNeedle(context, options) { let pad1 = max / 100 * options.needleWidth; let pad2 = max / 100 * options.needleWidth / 2; let pixelRatio = SmartCanvas.pixelRatio; - let isFixed = options.animationTarget !== 'needle'; context.save();