www

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

commit 65d63fad376902b8f33f7c06041784bd14755dcd
parent 21cc9f16bff02dce7dd1e5140071abca6c96c938
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 10 Aug 2017 04:50:20 +0200

Fix opening of some links in About pane

Diffstat:
Mchrome/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 @@ -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')); }; } ]]></script>