Update dygraph.js
authorWim Bruynooghe <wim@wimme.net>
Fri, 31 May 2013 13:50:37 +0000 (16:50 +0300)
committerWim Bruynooghe <wim@wimme.net>
Fri, 31 May 2013 13:50:37 +0000 (16:50 +0300)
dygraph.js

index 65eecb8..dfab016 100644 (file)
@@ -2822,8 +2822,8 @@ Dygraph.prototype.extractSeries_ = function(rawData, i, logScale) {
       // On the log scale, points less than zero do not exist.
       // This will create a gap in the chart.
       if (errorBars || customBars) {
+        // point.length is either 2 (errorBars) or 3 (customBars)
         for (var k = 0; k < point.length; k++) {
-          // point.length is either 2 (errorBars) or 3 (customBars)
           if (point[k] <= 0) {
             point = null;
             break;