From: Robert Konigsberg Date: Fri, 25 Jan 2013 19:57:27 +0000 (-0500) Subject: Resize event causes several event handlers to be be added. Make the events private... X-Git-Tag: v1.0.0~111^2 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=7d6df48dfebbf5f00c3bf775183280be5db45e75;p=dygraphs.git Resize event causes several event handlers to be be added. Make the events private, and prevent multiple registration. --- diff --git a/dygraph.js b/dygraph.js index 3803d9a..1a523b1 100644 --- a/dygraph.js +++ b/dygraph.js @@ -956,17 +956,19 @@ Dygraph.prototype.createInterface_ = function() { var dygraph = this; - this.mouseMoveHandler = function(e) { - dygraph.mouseMove_(e); - }; - this.addEvent(this.mouseEventElement_, 'mousemove', this.mouseMoveHandler); + // Don't recreate and register the handlers on subsequent calls. + // This happens when the graph is resized. + if (!this.mouseMoveHandler_) { + this.mouseMoveHandler_ = function(e) { + dygraph.mouseMove_(e); + }; + this.addEvent(this.mouseEventElement_, 'mousemove', this.mouseMoveHandler_); - this.mouseOutHandler = function(e) { - dygraph.mouseOut_(e); - }; - this.addEvent(this.mouseEventElement_, 'mouseout', this.mouseOutHandler); + this.mouseOutHandler_ = function(e) { + dygraph.mouseOut_(e); + }; + this.addEvent(this.mouseEventElement_, 'mouseout', this.mouseOutHandler_); - if (!this.resizeHandler_) { this.resizeHandler_ = function(e) { dygraph.resize(); }; @@ -997,9 +999,14 @@ Dygraph.prototype.destroy = function() { this.registeredEvents_ = []; // remove mouse event handlers (This may not be necessary anymore) - Dygraph.removeEvent(this.mouseEventElement_, 'mouseout', this.mouseOutHandler); - Dygraph.removeEvent(this.mouseEventElement_, 'mousemove', this.mouseMoveHandler); + Dygraph.removeEvent(this.mouseEventElement_, 'mouseout', this.mouseOutHandler_); + Dygraph.removeEvent(this.mouseEventElement_, 'mousemove', this.mouseMoveHandler_); Dygraph.removeEvent(this.mouseEventElement_, 'mousemove', this.mouseUpHandler_); + + // remove window handlers + Dygraph.removeEvent(window,'resize',this.resizeHandler_); + this.resizeHandler_ = null; + removeRecursive(this.maindiv_); var nullOut = function(obj) { @@ -1009,9 +1016,6 @@ Dygraph.prototype.destroy = function() { } } }; - // remove event handlers - Dygraph.removeEvent(window,'resize',this.resizeHandler_); - this.resizeHandler_ = null; // These may not all be necessary, but it can't hurt... nullOut(this.layout_); nullOut(this.plotter_);