Restore "don't run SP script on iframe (368)" + lint/format (#373)
This commit is contained in:
parent
406d91948d
commit
56ecdec2cb
1 changed files with 15 additions and 3 deletions
|
@ -332,6 +332,18 @@ function App(props: Props) {
|
|||
|
||||
// add secure privacy script
|
||||
useEffect(() => {
|
||||
function inIframe() {
|
||||
try {
|
||||
return window.self !== window.top;
|
||||
} catch (e) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
if (inIframe()) {
|
||||
return;
|
||||
}
|
||||
|
||||
const script = document.createElement('script');
|
||||
script.src = securePrivacyScriptUrl;
|
||||
script.async = true;
|
||||
|
|
Loading…
Reference in a new issue