From: Wim Bruynooghe <wim@wimme.net>
Date: Fri, 31 May 2013 13:50:37 +0000 (+0300)
Subject: Update dygraph.js
X-Git-Tag: v1.0.0~25^2~1
X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=e55b4f4f1386ee9ff2588206875fa2d70403fbb1;p=dygraphs.git

Update dygraph.js
---

diff --git a/dygraph.js b/dygraph.js
index 65eecb8..dfab016 100644
--- a/dygraph.js
+++ b/dygraph.js
@@ -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;