blob: 6e52ecaaa9749b6d905c105631228c7eba250ff3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>title</title>
</head>
<body onload="notifyOpener();">
<script type="application/javascript">
function notifyOpener() {
opener.postMessage("navigation-done", "*");
}
</script>
</body>
</html>
|