Fixed the line drawing isse. (JPT... wow...)

This commit is contained in:
Maschell 2017-12-30 23:37:29 +01:00
parent 686e85e525
commit 6e1859cd26
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ function createLineGraph(containerId, raceData){
.attr("r", linePointSize * 0.5) .attr("r", linePointSize * 0.5)
.attr("d", lineDataDefinitionSmall); .attr("d", lineDataDefinitionSmall);
// Remove data from driverLapData, since we don't need a generic datapoint for this // Remove data from driverLapData, since we don't need a generic datapoint for this
driverLapData.laps[singleLapIndex] = {}; //driverLapData.laps[singleLapIndex] = {};
} }
}); });