Bug 690361 - Switching tabs re-enables the highlighter; r=msucan

This commit is contained in:
Rob Campbell 2011-10-03 12:06:44 -03:00
parent e0f1a4fc50
commit a2f246c327

View File

@ -290,10 +290,14 @@ Highlighter.prototype = {
closeButton.id = "highlighter-close-button";
closeButton.appendChild(this.chromeDoc.createElement("image"));
closeButton.addEventListener("click",
this.IUI.closeInspectorUI.bind(this.IUI), false);
let boundCloseEventHandler = this.IUI.closeInspectorUI.bind(this.IUI, false);
closeButton.addEventListener("click", boundCloseEventHandler, false);
aParent.appendChild(closeButton);
this.boundCloseEventHandler = boundCloseEventHandler;
this.closeButton = closeButton;
},
/**
@ -303,6 +307,10 @@ Highlighter.prototype = {
{
this.browser.removeEventListener("scroll", this, true);
this.browser.removeEventListener("resize", this, true);
this.closeButton.removeEventListener("click", this.boundCloseEventHandler, false);
this.boundCloseEventHandler = null;
this.closeButton.parentNode.removeChild(this.closeButton);
this.closeButton = null;
this._contentRect = null;
this._highlightRect = null;
this._highlighting = false;