14 lines
206 B
HTML
14 lines
206 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<body>
|
|
<script>
|
|
onmessage = function(e) {
|
|
parent.postMessage(e.data, '*', e.ports);
|
|
}
|
|
|
|
onmessageerror = function() {
|
|
parent.postMessage("error", '*');
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|