Last set of code review comments for unzoom.
authorRobert Konigsberg <konigsberg@gmail.com>
Fri, 11 Jan 2013 15:11:05 +0000 (10:11 -0500)
committerRobert Konigsberg <konigsberg@gmail.com>
Fri, 11 Jan 2013 15:11:05 +0000 (10:11 -0500)
plugins/unzoom.js

index ba510d0..d81413a 100644 (file)
@@ -63,7 +63,7 @@ Dygraph.Plugins.Unzoom = (function() {
     }
 
     this.button_ = document.createElement('button');
-    this.button_.innerHTML = 'Unzoom';
+    this.button_.innerHTML = 'Reset Zoom';
     this.button_.style.display = 'none';
     this.button_.style.position = 'absolute';
     var area = g.plotter_.area;
@@ -92,7 +92,7 @@ Dygraph.Plugins.Unzoom = (function() {
   };
 
   unzoom.prototype.show = function(enabled) {
-    this.button_.style.display = enabled ? 'block' : '';
+    this.button_.style.display = enabled ? '' : 'none';
   };
 
   unzoom.prototype.destroy = function() {