|
<!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>
|