misc cleanup
authorDan Vanderkam <danvk@google.com>
Tue, 26 Jul 2011 15:14:59 +0000 (11:14 -0400)
committerDan Vanderkam <danvk@google.com>
Tue, 26 Jul 2011 15:14:59 +0000 (11:14 -0400)
auto_tests/lib/JsTestDriver-1.3.2.jar [changed mode: 0755->0644]
dygraph-layout.js

old mode 100755 (executable)
new mode 100644 (file)
index 4beddc4..c870d3b 100644 (file)
@@ -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;