From 5ec8b8ae742a9aac74d089f60645954ee06c7086 Mon Sep 17 00:00:00 2001 From: Robert Konigsberg Date: Wed, 23 Apr 2014 10:58:09 -0400 Subject: [PATCH] dingle quotes. --- dygraph-interaction-model.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.7.4