Skip to content
This repository has been archived by the owner on Jun 4, 2021. It is now read-only.

Commit

Permalink
Merge b3be03c into 404038a
Browse files Browse the repository at this point in the history
  • Loading branch information
anselmbradford committed Jun 26, 2018
2 parents 404038a + b3be03c commit eaaaa22
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -36,7 +36,7 @@ function showRelatedObjectLookupPopup(triggeringLink) {
} else {
href = triggeringLink.href + '?_popup=1';
}
var win = window.open(href, name, 'height=500,width=800,resizable=yes,scrollbars=yes');
var win = window.open(href, name, 'height=500,width=800,noopener,resizable=yes,scrollbars=yes');
win.focus();
return false;
}
Expand All @@ -61,7 +61,7 @@ function showAddAnotherPopup(triggeringLink) {
} else {
href += '&_popup=1';
}
var win = window.open(href, name, 'height=500,width=800,resizable=yes,scrollbars=yes');
var win = window.open(href, name, 'height=500,width=800,noopener,resizable=yes,scrollbars=yes');
win.focus();
return false;
}
Expand Down

0 comments on commit eaaaa22

Please sign in to comment.