Adds rel="noopener noreferrer" to _blank links inside comments

For more details, check out https://mathiasbynens.github.io/rel-noopener/ for instance

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2018-01-11 11:02:45 +01:00
parent 2a24f45b5f
commit feb4dc383e
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
}
var linkText = url.replace(self.protocolRegex, '');
return '<a class="external" target="_blank" href="' + url + '">' + linkText + '</a>';
return '<a class="external" target="_blank" rel="noopener noreferrer" href="' + url + '">' + linkText + '</a>';
});
},