Skip to content

Commit

Permalink
Fixed jshint warning 'Missing semicolons'.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Apr 13, 2018
1 parent a2c5562 commit 7cef19a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ function BarChart(dualYaxis) {
// update
bars
.attr('width', xScale.rangeBand() / 2)
.attr('x', function (d) { return xScale(d[0]) })
.attr('x', function (d) { return xScale(d[0]); })
.transition()
.delay(function (d, i) { return i / data.length * 1000; })
.duration(500)
Expand Down

0 comments on commit 7cef19a

Please sign in to comment.