mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
14 lines
185 B
HTML
14 lines
185 B
HTML
|
|
<!doctype html>
|
||
|
|
Base
|
||
|
|
<script>
|
||
|
|
onpagehide = function() {
|
||
|
|
if(top.base_hide) {
|
||
|
|
top.base_hide();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
onpageshow = function() {
|
||
|
|
if (top.base_show) {
|
||
|
|
top.base_show();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|