mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
15 lines
365 B
XML
15 lines
365 B
XML
<menupopup xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="d" popup="d">
|
|
<script>
|
|
function doe() {
|
|
var d = document.getElementById('d');
|
|
if (d.openPopup) {
|
|
d.openPopup(document.documentElement, 'before_start', 0, 0, false, false);
|
|
// alert(d.state);
|
|
}
|
|
|
|
if (d.showPopup)
|
|
d.showPopup();
|
|
}
|
|
setTimeout(doe, 200);
|
|
</script>
|
|
</menupopup>
|