From: Robert Konigsberg Date: Wed, 23 Apr 2014 14:58:09 +0000 (-0400) Subject: dingle quotes. X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=f2e97253ff39cd0173f6cf31f91905f1cb5871dc;p=dygraphs.git dingle quotes. --- diff --git a/dygraph-interaction-model.js b/dygraph-interaction-model.js index c97b060..0011346 100644 --- a/dygraph-interaction-model.js +++ b/dygraph-interaction-model.js @@ -39,7 +39,7 @@ Dygraph.Interaction.startPan = function(event, g, context) { context.isPanning = true; var xRange = g.xAxisRange(); - if (g.getOptionForAxis("logscale", 'x')) { + if (g.getOptionForAxis("logscale", "x")) { context.initialLeftmostDate = Dygraph.log10(xRange[0]); context.dateRange = Dygraph.log10(xRange[1]) - Dygraph.log10(xRange[0]); } else { @@ -138,7 +138,7 @@ Dygraph.Interaction.movePan = function(event, g, context) { } } - if (g.getOptionForAxis("logscale", 'x')) { + if (g.getOptionForAxis("logscale", "x")) { g.dateWindow_ = [ Math.pow(Dygraph.LOG_SCALE, minDate), Math.pow(Dygraph.LOG_SCALE, maxDate) ]; } else {