From 6ed0c0be3ff3e321de836cdf52283f95018c1508 Mon Sep 17 00:00:00 2001 From: Colin McLeod Date: Thu, 28 May 2015 02:27:42 -0700 Subject: [PATCH] Linting fix --- app/js/directives/directive-area-chart.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/js/directives/directive-area-chart.js b/app/js/directives/directive-area-chart.js index 1ecf0f1c..0d92d1ae 100755 --- a/app/js/directives/directive-area-chart.js +++ b/app/js/directives/directive-area-chart.js @@ -15,8 +15,7 @@ angular.module('app').directive('areaChart', ['$window', function ($window) { labels = config.labels, margin = {top: 15, right: 15, bottom: 35, left: 50}, fmt = d3.format('.3r'), - fmtLong = d3.format('.2f'), - x, y; + fmtLong = d3.format('.2f'); // Create chart var svg = d3.select(element[0]).append("svg");