16 lines
312 B
HTML
16 lines
312 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
window.addEventListener("load", () => {
|
|
window.parent.postMessage("loaded", "*");
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|