Fix for Ctrl-click and Ctrl-Shift-click not opening a new tab in Windows and Linux
This commit is contained in:
parent
f1f82e318b
commit
44e1fe836c
|
@ -1304,7 +1304,7 @@ var ZoteroPane = new function()
|
|||
*/
|
||||
function loadURI(uri, event, data) {
|
||||
// Open in new tab
|
||||
if (event.metaKey) {
|
||||
if (event.metaKey || (!Zotero.isMac && event.ctrlKey)) {
|
||||
var tab = gBrowser.addTab(uri);
|
||||
var browser = gBrowser.getBrowserForTab(tab);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user