mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
8 lines
241 B
JavaScript
8 lines
241 B
JavaScript
|
|
var m = document.getElementById("m");
|
||
|
|
m.addEventListener("click", function() {
|
||
|
|
// this will trigger after onstart, obviously.
|
||
|
|
parent.postMessage('finish', '*');
|
||
|
|
});
|
||
|
|
console.log("finish-handler setup");
|
||
|
|
m.click();
|
||
|
|
console.log("clicked");
|