From ae5cebeb6174dacacf80a693fdeb543f2788684f Mon Sep 17 00:00:00 2001 From: Anish Hota Date: Thu, 8 Jun 2017 20:59:24 +0530 Subject: [PATCH] Add missing semicolons to Calculator.js for consistency (#15257) --- public/js/calculator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/js/calculator.js b/public/js/calculator.js index 9ae06e890a..2590c0c375 100644 --- a/public/js/calculator.js +++ b/public/js/calculator.js @@ -183,7 +183,7 @@ $(document).ready(function () { return y1Scale(d.label); }) .attr("x", 0) - .attr("height", y1Scale.rangeBand()) + .attr("height", y1Scale.rangeBand()); } function transitionStacked() { @@ -200,7 +200,7 @@ $(document).ready(function () { .attr("y", function (d) { return y0Scale(d.label); }) - .attr("height", y0Scale.rangeBand()) + .attr("height", y0Scale.rangeBand()); } //axes @@ -243,7 +243,7 @@ $(document).ready(function () { d3.format(",")(d.value ? d.value : d.x1 - d.x0); } }); - $(this).popover('show') + $(this).popover('show'); } //legends