-
-
Notifications
You must be signed in to change notification settings - Fork 537
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update configuration and UI behavior for Zen Browser
- Remove unnecessary comments from mozconfig - Disable sign-on remembering in preferences - Ensure popups are rolled up when updating vertical tabs - Adjust popup hidden event listener to use capture option - Bump version numbers in surfer.json for releases
- Loading branch information
1 parent
dd88086
commit a1debe4
Showing
5 changed files
with
15 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
src/browser/components/customizableui/content/panelUI-js.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
diff --git a/browser/components/customizableui/content/panelUI.js b/browser/components/customizableui/content/panelUI.js | ||
index 1805bad6c58e060533f634ed9e511c05cad3ded1..4eb04f3eb1b9dd1c5d663cca0a7ad903b38c4efd 100644 | ||
index 1805bad6c58e060533f634ed9e511c05cad3ded1..07aca3c94b725af8761f0fa7881926da71502d76 100644 | ||
--- a/browser/components/customizableui/content/panelUI.js | ||
+++ b/browser/components/customizableui/content/panelUI.js | ||
@@ -545,7 +545,7 @@ const PanelUI = { | ||
@@ -544,8 +544,8 @@ const PanelUI = { | ||
} | ||
|
||
if (viewShown) { | ||
CustomizableUI.addPanelCloseListeners(tempPanel); | ||
- tempPanel.addEventListener("popuphidden", panelRemover); | ||
+ tempPanel.addEventListener("popuphidden", panelRemover, { capture: true }); | ||
- CustomizableUI.addPanelCloseListeners(tempPanel); | ||
tempPanel.addEventListener("popuphidden", panelRemover); | ||
+ CustomizableUI.addPanelCloseListeners(tempPanel); | ||
} else { | ||
panelRemover(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters