Ver código fonte

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 anos atrás
pai
commit
feb4dc383e
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      core/js/public/comments.js

+ 1
- 1
core/js/public/comments.js Ver arquivo

@@ -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>';
});
},


Carregando…
Cancelar
Salvar