BUG FIX: link in fancy text now opens in new tab

This commit is contained in:
Lars van Hijfte
2017-02-02 14:22:13 +01:00
parent 417124a1fe
commit 188741ddf5

View File

@@ -31,7 +31,7 @@ function fancyText(text) {
} }
// Add links // Add links
else { else {
return "<a href='" + link + "'>" + link + "</a>"; return "<a href='" + link + "' target='_blank'>" + link + "</a>";
} }
}); });