referer: do not send referrer when opening a link
This change augments what was already done in 54e0f2de5b
(PR with discussion
at #3636).
For documentation about the meaning of "noopener, noreferrer", see:
https://developer.mozilla.org/en-US/docs/Web/API/Window/open#Window_functionality_features
pull/4027/head
parent
c1c58fa7e0
commit
d3f583c9c5
|
@ -3374,8 +3374,7 @@ function Ace2Inner(){
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var newWindow = window.open(n.href, '_blank');
|
window.open(n.href, '_blank', 'noopener,noreferrer');
|
||||||
newWindow.focus();
|
|
||||||
}
|
}
|
||||||
catch (e)
|
catch (e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue