Fix opening of some links in About pane

This commit is contained in:
Dan Stillman 2017-08-10 04:50:20 +02:00
parent 21cc9f16bf
commit 65d63fad37

View file

@ -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>