mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +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>
|