Respect shift key state when opening link in new tab from the context menu
r=jag sr=neil
This commit is contained in:
cst%andrew.cmu.edu 2006-05-24 16:12:49 +00:00
Родитель 3a8369a2ea
Коммит ac17e85dff
3 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -754,7 +754,7 @@
<menuitem id="context-openlinkintab"
label="&openLinkCmdInTab.label;"
accesskey="&openLinkCmdInTab.accesskey;"
oncommand="gContextMenu.openLinkInTab();"/>
oncommand="gContextMenu.openLinkInTab(event.shiftKey);"/>
<menuseparator id="messagePaneContext-sep-link"/>
<menuitem id="context-selectall"
label="&selectAllCmd.label;"

Просмотреть файл

@ -78,7 +78,7 @@
<menuitem id="context-openlinkintab"
label="&openLinkCmdInTab.label;"
accesskey="&openLinkCmdInTab.accesskey;"
oncommand="gContextMenu.openLinkInTab();"/>
oncommand="gContextMenu.openLinkInTab(event.shiftKey);"/>
<menuseparator id="context-sep-open"/>
<menuitem id="context-bookmarklink"
label="&bookmarkLinkCmd.label;"
@ -201,7 +201,7 @@
oncommand="gContextMenu.openFrame();"/>
<menuitem label="&openFrameCmdInTab.label;"
accesskey="&openFrameCmdInTab.accesskey;"
oncommand="gContextMenu.openFrameInTab();"/>
oncommand="gContextMenu.openFrameInTab(event.shiftKey);"/>
<menuseparator/>
<menuitem id="context-reload-frame"
label="&reloadFrameCmd.label;"

Просмотреть файл

@ -521,14 +521,14 @@ nsContextMenu.prototype = {
openNewWindowWith( this.linkURL(), true );
},
// Open linked-to URL in a new tab.
openLinkInTab : function () {
openLinkInTab : function ( reverseBackgroundPref ) {
// Determine linked-to URL.
openNewTabWith( this.linkURL(), true, false );
openNewTabWith( this.linkURL(), true, reverseBackgroundPref );
},
// Open frame in a new tab.
openFrameInTab : function () {
openFrameInTab : function ( reverseBackgroundPref ) {
// Determine linked-to URL.
openNewTabWith( this.target.ownerDocument.location.href );
openNewTabWith( this.target.ownerDocument.location.href, true, reverseBackgroundPref );
},
// Reload clicked-in frame.
reloadFrame : function () {