From 44e1fe836c36cd427b9a1a64638eff7518a88e12 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 29 Mar 2007 15:34:44 +0000 Subject: [PATCH] Fix for Ctrl-click and Ctrl-Shift-click not opening a new tab in Windows and Linux --- chrome/content/zotero/overlay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/overlay.js b/chrome/content/zotero/overlay.js index c8d2f44d9..751372872 100644 --- a/chrome/content/zotero/overlay.js +++ b/chrome/content/zotero/overlay.js @@ -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);