From 63e486298c225c6547604a83ae22bb280a8efb8a Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Thu, 11 Oct 2012 14:56:22 +0100 Subject: [PATCH] Fixed typo in link macro --- core/modules/macros/link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/macros/link.js b/core/modules/macros/link.js index 83e515da7..4446078a1 100644 --- a/core/modules/macros/link.js +++ b/core/modules/macros/link.js @@ -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 {