diff options
author | Gaming4JC <g4jc@bulletmail.org> | 2018-10-20 17:33:00 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@bulletmail.org> | 2018-10-20 17:33:00 -0400 |
commit | 89fdeb9a9dda2574263c7b447a8af113c515d8b0 (patch) | |
tree | 607a3253de4fef65988dc829308e265ffcd7f13c | |
parent | ed7558c44bb6cf0054b0aeeae84e9dbdfbf8aa8b (diff) | |
download | iceweasel-uxp-89fdeb9a9dda2574263c7b447a8af113c515d8b0.tar.gz |
backport: Fix Broken Back/Forward context menu of the Web Panel
-rw-r--r-- | base/content/web-panels.xul | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/base/content/web-panels.xul b/base/content/web-panels.xul index 868dd55..c13c58a 100644 --- a/base/content/web-panels.xul +++ b/base/content/web-panels.xul @@ -44,6 +44,21 @@ disabled="true"/> <command id="Browser:Stop" oncommand="PanelBrowserStop();"/> <command id="Browser:Reload" oncommand="PanelBrowserReload();"/> + <command id="Browser:BackOrBackDuplicate" + oncommand="getPanelBrowser().webNavigation.goBack(event);" + disabled="true"> + <observes element="Browser:Back" attribute="disabled"/> + </command> + <command id="Browser:ForwardOrForwardDuplicate" + oncommand="getPanelBrowser().webNavigation.goForward(event);" + disabled="true"> + <observes element="Browser:Forward" attribute="disabled"/> + </command> + <command id="Browser:ReloadOrDuplicate" + oncommand="PanelBrowserReload(event)" + disabled="true"> + <observes element="Browser:Reload" attribute="disabled"/> + </command> </commandset> <popupset id="mainPopupSet"> |