Source code
Revision control
Copy as Markdown
Other Tools
<script>
bc.addEventListener("message", ({ data }) => {
if (data == "next") {
location = "file_bug1773192_2.html";
} else if (data == "close") {
window.close();
}
});
window.addEventListener("pageshow", () => {
bc.postMessage({ location: location.href, referrer: document.referrer });
});
</script>