1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 09:43:16 +00:00

Fixed typo in link macro

This commit is contained in:
Jeremy Ruston 2012-10-11 14:56:22 +01:00
parent b48cbb8673
commit 63e486298c

View File

@ -28,7 +28,7 @@ exports.info = {
exports.handleEvent = function (event) {
if(event.type === "click") {
if(isLinkExternal(this.params.to)) {
if(isLinkExternal(this.linkInfo.to)) {
event.target.setAttribute("target","_blank");
return true;
} else {