16 lines
302 B
HTML
16 lines
302 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body></body>
|
||
|
<script src="/winchan.js"></script>
|
||
|
<script>
|
||
|
var wc = WinChan.onOpen(function(origin, args, cb) {
|
||
|
if (window.location.hash === '#complete') {
|
||
|
cb(args);
|
||
|
} else {
|
||
|
wc.detach();
|
||
|
window.location = "child2.html";
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
</html>
|