From: Dan Vanderkam Date: Tue, 26 Jul 2011 15:14:59 +0000 (-0400) Subject: misc cleanup X-Git-Tag: v1.0.0~440 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=fc77253be54363982aea001510740cdf8371b7e8;p=dygraphs.git misc cleanup --- 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;