2015-12-11 00:49:23 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
window.addEventListener('message', function (e) {
|
2015-12-15 01:09:31 +00:00
|
|
|
window.opener.postMessage(JSON.stringify({
|
2015-12-14 22:55:48 +00:00
|
|
|
origin: e.origin,
|
|
|
|
data: e.data,
|
2020-04-27 19:46:04 +00:00
|
|
|
sourceEqualsOpener: e.source.location.href === window.opener.location.href
|
2015-12-15 01:09:31 +00:00
|
|
|
}), '*');
|
2015-12-11 00:49:23 +00:00
|
|
|
});
|
2019-06-11 23:35:58 +00:00
|
|
|
window.opener.postMessage("ready", "*")
|
2015-12-11 00:49:23 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|