12 lines
324 B
HTML
12 lines
324 B
HTML
<script>
|
|
var bc = new BroadcastChannel("bug660404");
|
|
window.onload = function() {
|
|
setTimeout(() => {
|
|
window.onpagehide = function(ev) {
|
|
bc.postMessage({command: "pagehide", persisted: ev.persisted});
|
|
bc.close();
|
|
};
|
|
window.location.href = "file_bug660404";
|
|
}, 0);
|
|
};
|
|
</script>
|