Replace ternary with a simpler or statement.

pull/1/head
David Schnur 13 years ago
parent b4258846b8
commit 89ad298088

@ -2381,7 +2381,7 @@ Licensed under the MIT license.
}
ctx.lineWidth = lw;
ctx.strokeStyle = series.points.strokeColor ? series.points.strokeColor : series.color;
ctx.strokeStyle = series.points.strokeColor || series.color;
plotPoints(series.datapoints, radius,
getFillStyle(series.points, series.color), 0, false,
series.xaxis, series.yaxis, symbol);

Loading…
Cancel
Save