Skip to content

Commit

Permalink
Fix menu auto-opening in Firefox 69+
Browse files Browse the repository at this point in the history
(see #28)
  • Loading branch information
Infocatcher committed Aug 11, 2019
1 parent a3af8e0 commit 093ad4f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Bookmarks_Folder/bookmarksFolder.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ this.onmouseover = function(e) {
if(
node != this
&& node.namespaceURI == xulns
&& node.boxObject
// See https://github.com/Infocatcher/Custom_Buttons/issues/28
//&& node.boxObject
//&& node.boxObject instanceof Components.interfaces.nsIMenuBoxObject
&& "open" in node
&& node.open
Expand Down
2 changes: 1 addition & 1 deletion Extensions_Developer_Tools/extDevTools.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,8 @@ this.onmouseover = function(e) {
if(
node != this
&& node.namespaceURI == XULNS
&& node.boxObject
// See https://github.com/Infocatcher/Custom_Buttons/issues/28
//&& node.boxObject
//&& node.boxObject instanceof Components.interfaces.nsIMenuBoxObject
&& "open" in node
&& node.open
Expand Down
2 changes: 1 addition & 1 deletion Extensions_Installer/extensionsInstaller.js
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ if(isCbInit) {
if(
node != this
&& node.namespaceURI == xulns
&& node.boxObject
// See https://github.com/Infocatcher/Custom_Buttons/issues/28
//&& node.boxObject
//&& node.boxObject instanceof Components.interfaces.nsIMenuBoxObject
&& "open" in node
&& node.open
Expand Down
2 changes: 1 addition & 1 deletion Merge_Custom_Buttons/mergeCustomButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ this.onmouseover = function(e) {
if(
node != this
&& node.namespaceURI == xulns
&& node.boxObject
// See https://github.com/Infocatcher/Custom_Buttons/issues/28
//&& node.boxObject
//&& node.boxObject instanceof Components.interfaces.nsIMenuBoxObject
&& "open" in node
&& node.open
Expand Down
2 changes: 1 addition & 1 deletion Session_Bookmarks/sessionBookmarks.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ this.onmouseover = function(e) {
if(
node != this
&& node.namespaceURI == xulns
&& node.boxObject
// See https://github.com/Infocatcher/Custom_Buttons/issues/28
//&& node.boxObject
//&& node.boxObject instanceof Components.interfaces.nsIMenuBoxObject
&& "open" in node
&& node.open
Expand Down
2 changes: 1 addition & 1 deletion Toggle_Restartless_Add-ons/toggleRestartlessAddons.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ if(
if(
node != this
&& node.namespaceURI == xulns
&& node.boxObject
// See https://github.com/Infocatcher/Custom_Buttons/issues/28
//&& node.boxObject
//&& node.boxObject instanceof Components.interfaces.nsIMenuBoxObject
&& "open" in node
&& node.open
Expand Down
2 changes: 1 addition & 1 deletion Undo_Close_Tabs/undoCloseTabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ this.onmouseover = function(e) {
if(
node != this
&& node.namespaceURI == xulns
&& node.boxObject
// See https://github.com/Infocatcher/Custom_Buttons/issues/28
//&& node.boxObject
//&& node.boxObject instanceof Components.interfaces.nsIMenuBoxObject
&& "open" in node
&& node.open
Expand Down
2 changes: 1 addition & 1 deletion code_snippets/autoOpenCloseMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ function closeOtherMenus() {
if(
node != self
&& node.namespaceURI == xulns
&& node.boxObject
// See https://github.com/Infocatcher/Custom_Buttons/issues/28
//&& node.boxObject
//&& node.boxObject instanceof Components.interfaces.nsIMenuBoxObject
&& "open" in node
&& node.open
Expand Down

0 comments on commit 093ad4f

Please sign in to comment.