Skip to content

Commit b2fedcd

Browse files
committed
Fix recently introduced bug in pie plugin pointed out by Chris R. Patterson
1 parent 431a603 commit b2fedcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery.flot.pie.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ More detail and specific examples can be found in the included HTML file.
682682

683683
function drawHighlight(series)
684684
{
685-
if (series.angle <= 0 || isNaN(angle))
685+
if (series.angle <= 0 || isNaN(series.angle))
686686
return;
687687

688688
//octx.fillStyle = parseColor(options.series.pie.highlight.color).scale(null, null, null, options.series.pie.highlight.opacity).toString();

0 commit comments

Comments
 (0)