Skip to content

Commit 6611805

Browse files
committed
Missing semicolon
1 parent 5588477 commit 6611805

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Chart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ window.Chart = function(context){
875875
ctx.lineWidth = config.datasetStrokeWidth;
876876
ctx.beginPath();
877877
ctx.moveTo(yAxisPosX, xAxisPosY - animPc*(calculateOffset(data.datasets[i].data[0],calculatedScale,scaleHop)))
878-
datasetPoints[i] = []
878+
datasetPoints[i] = [];
879879

880880
for (var j=1; j<data.datasets[i].data.length; j++){
881881
if (config.bezierCurve){

0 commit comments

Comments
 (0)