From fc77253be54363982aea001510740cdf8371b7e8 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Tue, 26 Jul 2011 11:14:59 -0400 Subject: [PATCH] misc cleanup --- auto_tests/lib/JsTestDriver-1.3.2.jar | Bin dygraph-layout.js | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-) mode change 100755 => 100644 auto_tests/lib/JsTestDriver-1.3.2.jar diff --git a/auto_tests/lib/JsTestDriver-1.3.2.jar b/auto_tests/lib/JsTestDriver-1.3.2.jar old mode 100755 new mode 100644 diff --git a/dygraph-layout.js b/dygraph-layout.js index 4beddc4..c870d3b 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -131,7 +131,8 @@ DygraphLayout.prototype._evaluateLineCharts = function() { this.points = new Array(); // An array to keep track of how many points will be drawn for each set. // This will allow for the canvas renderer to not have to check every point - // for every data set since the points are added in order of the sets in datasets + // for every data set since the points are added in order of the sets in + // datasets. this.setPointsLengths = new Array(); for (var setName in this.datasets) { @@ -186,7 +187,7 @@ DygraphLayout.prototype._evaluateLineCharts = function() { name: setName }; this.points.push(point); - setPointsLength += 1; + setPointsLength += 1; } prevXPx = currXPx; prevYPx = currYPx; -- 2.7.4