- Put back call to this.yAxisRanges() in doZoomY_
authorNeal Nelson <neal@makalumedia.com>
Fri, 28 Jan 2011 15:13:44 +0000 (16:13 +0100)
committerNeal Nelson <neal@makalumedia.com>
Fri, 28 Jan 2011 15:13:44 +0000 (16:13 +0100)
- Change spelling back to American in index.html

docs/index.html
dygraph.js

index a2a2b5f..400478b 100644 (file)
@@ -900,7 +900,7 @@ perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high)
           <td><strong>wilsonInterval</strong></td>
           <td><code>boolean</code></td>
           <td><code>true</code></td>
-          <td>Use in conjunction with the "fractions" option. Instead of plotting +/- N standard deviations, dygraphs will compute a Wilson confidence interval and plot that. This has more reasonable behaviour for ratios close to 0 or 1.
+          <td>Use in conjunction with the "fractions" option. Instead of plotting +/- N standard deviations, dygraphs will compute a Wilson confidence interval and plot that. This has more reasonable behavior for ratios close to 0 or 1.
           <div class="tests">Tests: <font color=red>none</font></div>
           </td>
         </tr>
index d28fad3..b4f73c9 100644 (file)
@@ -1241,7 +1241,7 @@ Dygraph.prototype.doZoomY_ = function(lowY, highY) {
   if (this.attr_("zoomCallback")) {
     var xRange = this.xAxisRange();
     var yRange = this.yAxisRange();
-    this.attr_("zoomCallback")(xRange[0], xRange[1], yRange[0], yRange[1]);
+    this.attr_("zoomCallback")(xRange[0], xRange[1], this.yAxisRanges());
   }
 };