mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-12 22:59:01 +00:00
15 lines
185 B
HTML
15 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>
|