Skip to content

Commit

Permalink
Fix link opening in standalone note windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dstillman committed Apr 13, 2017
1 parent 9c91018 commit e1c183b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion chrome/content/zotero/bindings/styled-textbox.xml
Expand Up @@ -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:
Expand Down

0 comments on commit e1c183b

Please sign in to comment.