12 lines
189 B
HTML
12 lines
189 B
HTML
<html>
|
|
<head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
"use strict";
|
|
|
|
window.onload = function() {
|
|
window.opener.postMessage("ready", "*");
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|