From 0bb3a9b02457da314b62de57d723319b4a51a327 Mon Sep 17 00:00:00 2001 From: Jan Nicklas Date: Fri, 10 Jul 2015 11:53:35 +0200 Subject: [PATCH] Fix typo --- src/Chart.Core.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Chart.Core.js b/src/Chart.Core.js index 8d610418b..1b977c080 100755 --- a/src/Chart.Core.js +++ b/src/Chart.Core.js @@ -1283,8 +1283,8 @@ // Normalize all angles to 0 - 2*PI (0 - 360°) var pointRelativeAngle = pointRelativePosition.angle % (Math.PI * 2), - var startAngle = (Math.PI * 2 + this.startAngle) % (Math.PI * 2), - var endAngle = (Math.PI * 2 + this.endAngle) % (Math.PI * 2) || 360; + startAngle = (Math.PI * 2 + this.startAngle) % (Math.PI * 2), + endAngle = (Math.PI * 2 + this.endAngle) % (Math.PI * 2) || 360; // Calculate wether the pointRelativeAngle is between the start and the end angle var betweenAngles = (endAngle < startAngle) ? -- 2.47.2