From 31c871252986becd2739c0b9b24edf8d3457b9b2 Mon Sep 17 00:00:00 2001 From: Robert Konigsberg Date: Tue, 1 Jan 2013 15:24:28 -0500 Subject: [PATCH] Add warning that perhaps we do need an options API that gives non-default values. --- plugins/axes.js | 3 +++ 1 file changed, 3 insertions(+) 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 { -- 2.7.4