Browse Source

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>
tags/v13.0.0RC1
Thomas Citharel 6 years ago
parent
commit
feb4dc383e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      core/js/public/comments.js

+ 1
- 1
core/js/public/comments.js 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>';
});
},


Loading…
Cancel
Save