blob: a2b65906f3c7d1fd6f7df95c499f9027b4dcfd9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<script>
window.parent.postMessage({
"hash": window.location.hash,
"host": window.location.host,
"hostname": window.location.hostname,
"origin": window.location.origin,
"pathname": window.location.pathname,
"port": window.location.port,
"protocol": window.location.protocol,
}, "*");
</script>
|