From: Robert Konigsberg Date: Tue, 1 Jan 2013 20:24:28 +0000 (-0500) Subject: Add warning that perhaps we do need an options API that gives non-default values. X-Git-Tag: v1.0.0~132^2~3 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=31c871252986becd2739c0b9b24edf8d3457b9b2;p=dygraphs.git Add warning that perhaps we do need an options API that gives non-default values. --- diff --git a/plugins/axes.js b/plugins/axes.js index 3c0b015..02f621f 100644 --- a/plugins/axes.js +++ b/plugins/axes.js @@ -57,6 +57,9 @@ axes.prototype.layout = function(e) { if (g.getOption('drawXAxis')) { var h; + // NOTE: I think this is probably broken now, since g.getOption() now + // hits the dictionary. (That is, g.getOption('xAxisHeight') now always + // has a value.) if (g.getOption('xAxisHeight')) { h = g.getOption('xAxisHeight'); } else {