Commit 16de6188 authored by jpmorgan's avatar jpmorgan

Remove var to pass lint

parent 56614bf3
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
for (i = 0; i < d.length; i++) { for (i = 0; i < d.length; i++) {
if (! d[i] || !(d[i].value || d[i].value === 0)) { continue; } if (! d[i] || !(d[i].value || d[i].value === 0)) { continue; }
var value = '-'; value = '-';
if (isDefined(d[i].value)) { if (isDefined(d[i].value)) {
value = __axis_y_tick_format((Math.round(d[i].value * 100) / 100).toFixed(2)); value = __axis_y_tick_format((Math.round(d[i].value * 100) / 100).toFixed(2));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment