blob: 2c3196058a9e5213628821daf3a6c28ee18bd0d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<body>
<script>
// The important part of this page are the headers.
// If this page was opened as a popup, notify the opener.
if (window.opener) {
window.opener.postMessage("done_loading", "*");
window.close();
}
</script>
</body>
</html>
|