From 4bab12e216aa556da668d45cc99bffd8f991ec6e Mon Sep 17 00:00:00 2001 From: David Eberlein Date: Tue, 16 Apr 2013 18:18:32 +0200 Subject: [PATCH] BUGFIX: added missing spaces. --- dygraph.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]); -- 2.7.4