Fix link opening in standalone note windows
This commit is contained in:
parent
9c91018964
commit
e1c183b597
1 changed files with 4 additions and 1 deletions
|
@ -442,7 +442,10 @@
|
|||
break;
|
||||
|
||||
case 'ZoteroLinkClick':
|
||||
ZoteroPane.loadURI(event.value);
|
||||
var zp = typeof ZoteroPane != 'undefined'
|
||||
? ZoteroPane
|
||||
: window.opener.ZoteroPane;
|
||||
zp.loadURI(event.value);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue