10 lines
201 B
HTML
10 lines
201 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script type="text/javascript" charset="utf-8">
|
||
|
window.addEventListener('message', function (e) {
|
||
|
window.opener.postMessage(e.origin + e.data, '*');
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|