mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
16 lines
247 B
HTML
16 lines
247 B
HTML
|
|
<html>
|
||
|
|
<body onhashchange='hashchange(event)' onload='load()'>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
function hashchange(e) {
|
||
|
|
(opener || parent).childHashchange(e);
|
||
|
|
}
|
||
|
|
|
||
|
|
function load() {
|
||
|
|
(opener || parent).childLoad();
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
Just a shell of a page.
|
||
|
|
</body>
|
||
|
|
</html>
|