From: David Eberlein Date: Tue, 16 Apr 2013 16:18:32 +0000 (+0200) Subject: BUGFIX: added missing spaces. X-Git-Tag: v1.0.0~37^2~3 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=4bab12e216aa556da668d45cc99bffd8f991ec6e;p=dygraphs.git BUGFIX: added missing spaces. --- diff --git a/dygraph.js b/dygraph.js index 5fee847..bfdfc4d 100644 --- a/dygraph.js +++ b/dygraph.js @@ -2771,9 +2771,9 @@ Dygraph.prototype.extractSeries_ = function(rawData, i, logScale) { } } // Fix null points to fit the display type standard. - if(point === null && errorBars){ + if(point === null && errorBars) { series.push([x, [null,null]]); - }else if(point === null && customBars){ + } else if(point === null && customBars) { series.push([x, [null,null,null]]); } else { series.push([x, point]);