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 7cef19a commit b0b5252
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 @@ -867,7 +867,7 @@ function BarChart(dualYaxis) {
.attr('class', 'bar')
.attr('height', 0)
.attr('width', function (d, i) { return xScale.rangeBand() / 2; })
.attr('x', function (d) { return (xScale(d[0]) + xScale.rangeBand() / 2) })
.attr('x', function (d) { return (xScale(d[0]) + xScale.rangeBand() / 2); })
.attr('y', function (d, i) { return innerH(); });
// update
bars
Expand Down

0 comments on commit b0b5252

Please sign in to comment.