mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
20 lines
415 B
HTML
20 lines
415 B
HTML
|
|
<!doctype html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>support init file</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<script>
|
||
|
|
onload = function() {
|
||
|
|
// Run async, because navigations from inside onload can be a bit weird.
|
||
|
|
setTimeout(function() {
|
||
|
|
if (parent != window) {
|
||
|
|
parent.init()
|
||
|
|
} else {
|
||
|
|
opener.init();
|
||
|
|
}
|
||
|
|
}, 0);
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|