From 65d63fad376902b8f33f7c06041784bd14755dcd Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 10 Aug 2017 04:50:20 +0200 Subject: [PATCH] Fix opening of some links in About pane --- chrome/content/zotero/about.xul | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/about.xul b/chrome/content/zotero/about.xul index 3d235eacc4..8335c572a1 100644 --- a/chrome/content/zotero/about.xul +++ b/chrome/content/zotero/about.xul @@ -53,7 +53,7 @@ for (let span of document.getElementById('about-text').getElementsByTagName('span')) { span.className = 'text-link'; span.onclick = function () { - window.opener.ZoteroPane.loadURI(this.getAttribute('data-href')); + Zotero.launchURL(this.getAttribute('data-href')); }; } ]]>