Skip to content

Commit

Permalink
Merge pull request #14 from Kazebr/patch-1
Browse files Browse the repository at this point in the history
Fix dashed lines bug
  • Loading branch information
Kibo authored Mar 3, 2020
2 parents 8615ccc + 0597db9 commit a803b1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/build/astrochart.js
Original file line number Diff line number Diff line change
Expand Up @@ -3549,7 +3549,7 @@
for(var i = 0, ln = points.length; i < ln ; i++ ){

if( Math.abs(points[i].angle - angle) <= collisionRadius ||
(deg360 - Math.abs(points[i].angle - angle)) <= collisionRadius){
Math.abs(deg360 - Math.abs(points[i].angle - angle)) <= collisionRadius){
result = true;
break;
}
Expand Down Expand Up @@ -3637,4 +3637,4 @@
return pointA.angle - pointB.angle;
};

}( window.astrology = window.astrology || {}));
}( window.astrology = window.astrology || {}));

0 comments on commit a803b1c

Please sign in to comment.