mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
9 lines
190 B
HTML
9 lines
190 B
HTML
<script>
|
|
addEventListener("storage", function(e) {
|
|
if(e.newValue === "close") {
|
|
close()
|
|
}
|
|
})
|
|
localStorage.setItem("window" + location.hash.slice(1), "tralala")
|
|
</script>
|