blob: c45cf5ad34a0e28af37f457553f878ef2e24d6d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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>
|