Initial commit. \n 1. Screen capture plugin. \n 2. PNG annotation plugin

This commit is contained in:
2024-08-19 08:58:38 +01:00
parent 6e3fc47d36
commit 40a8406427
40 changed files with 5622 additions and 0 deletions

13
submission/shared.js Normal file
View File

@@ -0,0 +1,13 @@
var flagInitialised = "initialised";
var flagIsHidden = "is-hidden";
var flagIsVisible = "is-visible";
async function waitForClick($element) {
return new Promise((resolve) => {
$element.on('click', function() {
resolve();
});
$element.click();
});
}