14 lines
338 B
HTML
14 lines
338 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
window.addEventListener('message', function (e) {
|
|
window.opener.postMessage(JSON.stringify({
|
|
origin: e.origin,
|
|
data: e.data,
|
|
sourceEqualsOpener: e.source === window.opener,
|
|
sourceId: e.source.guestId
|
|
}), '*');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|