www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 3a2f0e69295d4d4a742ed4c973f54b1fa8c0fefd
parent 0653ee35668244599296789110be172858d9e6f1
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri, 11 Aug 2017 11:50:31 +0200

Fix URL opening in some places (since 21cc9f16bff0)

Diffstat:
Mchrome/content/zotero/zoteroPane.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -4168,8 +4168,8 @@ var ZoteroPane = new function() * @deprecated */ this.launchURL = function (url) { - Zotero.debug("ZoteroPane.launchURI() is deprecated -- use Zotero.launchURI()", 2); - Zotero.launchURI(launchURI); + Zotero.debug("ZoteroPane.launchURL() is deprecated -- use Zotero.launchURL()", 2); + return Zotero.launchURL(url); }