mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-19 23:08:46 +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>
|