Add missing semicolons to Calculator.js for consistency (#15257)

This commit is contained in:
Anish Hota
2017-06-08 20:59:24 +05:30
committed by mrugesh mohapatra
parent 37c3132c90
commit ae5cebeb61

View File

@ -183,7 +183,7 @@ $(document).ready(function () {
return y1Scale(d.label); return y1Scale(d.label);
}) })
.attr("x", 0) .attr("x", 0)
.attr("height", y1Scale.rangeBand()) .attr("height", y1Scale.rangeBand());
} }
function transitionStacked() { function transitionStacked() {
@ -200,7 +200,7 @@ $(document).ready(function () {
.attr("y", function (d) { .attr("y", function (d) {
return y0Scale(d.label); return y0Scale(d.label);
}) })
.attr("height", y0Scale.rangeBand()) .attr("height", y0Scale.rangeBand());
} }
//axes //axes
@ -243,7 +243,7 @@ $(document).ready(function () {
d3.format(",")(d.value ? d.value : d.x1 - d.x0); d3.format(",")(d.value ? d.value : d.x1 - d.x0);
} }
}); });
$(this).popover('show') $(this).popover('show');
} }
//legends //legends