Better name (thanks Paul.)
authorRobert Konigsberg <konigsberg@google.com>
Wed, 9 Jan 2013 01:31:06 +0000 (20:31 -0500)
committerRobert Konigsberg <konigsberg@google.com>
Wed, 9 Jan 2013 01:31:06 +0000 (20:31 -0500)
dygraph-interaction-model.js
dygraph-range-selector.js
dygraph.js

index 94dfe3c..9654f28 100644 (file)
@@ -574,7 +574,7 @@ Dygraph.Interaction.defaultModel = {
     if (event.altKey || event.shiftKey) {
       return;
     }
-    g.restoreZoom();
+    g.resetZoom();
   }
 };
 
index 0db095f..0a1ae13 100644 (file)
@@ -278,7 +278,7 @@ DygraphRangeSelector.prototype.initInteraction_ = function() {
       var zoomHandleStatus = self.getZoomHandleStatus_();
       self.isChangingRange_ = true;
       if (!zoomHandleStatus.isZoomed) {
-        self.dygraph_.restoreZoom();
+        self.dygraph_.resetZoom();
       } else {
         var xDataWindow = toXDataWindow(zoomHandleStatus);
         self.dygraph_.doZoomXDates_(xDataWindow[0], xDataWindow[1]);
index a97dafe..c867c66 100644 (file)
@@ -1463,7 +1463,7 @@ Dygraph.prototype.doZoomY_ = function(lowY, highY) {
  * Reset the zoom to the original view coordinates. This is the same as
  * double-clicking on the graph.
  */
-Dygraph.prototype.restoreZoom = function() {
+Dygraph.prototype.resetZoom = function() {
   var dirty = false, dirtyX = false, dirtyY = false;
   if (this.dateWindow_ !== null) {
     dirty = true;