X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph.js;h=cf276ffd27c649302437bc276af6a03e1fe7e2cf;hb=e71332d66382629c5014aa75d7c5f23b8686d9ff;hp=471e4ee12d5c3ce28be084e552efda229261515d;hpb=44477387f9e610d6d792bd06d0cd85d32d694752;p=dygraphs.git diff --git a/dygraph.js b/dygraph.js index 471e4ee..cf276ff 100644 --- a/dygraph.js +++ b/dygraph.js @@ -408,6 +408,12 @@ Dygraph.prototype.__init__ = function(div, file, attrs) { // TODO(nikhilk): Add any other stackedGraph checks here. } + // These two options have a bad interaction. See issue 359. + if (attrs.showRangeSelector && attrs.animatedZooms) { + this.warn('You should not set animatedZooms=true when using the range selector.'); + attrs.animatedZooms = false; + } + // Dygraphs has many options, some of which interact with one another. // To keep track of everything, we maintain two sets of options: // @@ -1310,7 +1316,7 @@ Dygraph.prototype.createDragInterface_ = function() { context.tarp.uncover(); }; - this.addEvent(window, 'mouseup', this.mouseUpHandler_); + this.addEvent(document, 'mouseup', this.mouseUpHandler_); }; /**