Merge pull request #6553 from dbarnett/develop

Open links from task notes into new browser window/context (Fixes #5622)
This commit is contained in:
Sabe Jones
2016-01-19 14:54:59 -06:00
+1 -1
View File
@@ -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;
};