[Pkg-mozext-commits] [firebug] 02/15: Issue 5963: 'Type any key to filter list' is not allowing type ahead

David Prévot taffit at moszumanska.debian.org
Mon Mar 31 22:46:37 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to tag firebug-1.10.5
in repository firebug.

commit d3257566b7aeda3be19671e4590821c70fd9f9a2
Author: Jan Odvarko <odvarko at gmail.com>
Date:   Thu Oct 11 09:55:05 2012 +0200

    Issue 5963: 'Type any key to filter list' is not allowing type ahead
---
 extension/content/firebug/firefox/bindings.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/extension/content/firebug/firefox/bindings.xml b/extension/content/firebug/firefox/bindings.xml
index 239acd7..330b049 100644
--- a/extension/content/firebug/firefox/bindings.xml
+++ b/extension/content/firebug/firefox/bindings.xml
@@ -1293,14 +1293,14 @@
             this.filter.filterString = "";
 
             this.onkeypress = FBL.bind(this.onKeyPress, this);
-            window.top.addEventListener("keypress", this.onkeypress, true);
+            window.parent.addEventListener("keypress", this.onkeypress, true);
 
             this.onclick = FBL.bind(this.onClick, this);
             this.popup.addEventListener("click", this.onclick, true);
         ]]></handler>
 
         <handler event="popuphidden"><![CDATA[
-            window.top.removeEventListener("keypress", this.onkeypress, true);
+            window.parent.removeEventListener("keypress", this.onkeypress, true);
             this.popup.removeEventListener("click", this.onclick, true);
 
             delete this.onkeypress;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/firebug.git



More information about the Pkg-mozext-commits mailing list