From 7a29542815fbbc6c7d63eaa9fa4bf9e1b7926662 Mon Sep 17 00:00:00 2001 From: David Barnett Date: Tue, 19 Jan 2016 11:01:41 -0800 Subject: [PATCH] Open links from task notes into new browser window/context (Fixes #5622) --- common/script/public/directives.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/script/public/directives.js b/common/script/public/directives.js index 2af15ff070..5662014e39 100644 --- a/common/script/public/directives.js +++ b/common/script/public/directives.js @@ -145,7 +145,7 @@ return function(input){ var html = md.toHtml(input); - html = html.replace(' href',' target="_self" href'); + html = html.replace(' href',' target="_blank" href'); return html; };