Untitled
unknown
plain_text
3 years ago
915 B
7
Indexable
(async function() {
'use strict';
const waiter784299 = await waitForWorkspaceElement("BUTTON.start")
//end awaitElements
runScriptBody();
})();
function runScriptBody(){
// Your code here...
if (!sanityChecks()) return;
mainish();
eventish();
stylish();
}
/*
This section will check if the script should run the rest of the events. If empty all code will execute by default.
You must return false if you want the script to exit without executing main code blocks.
Any code prior to the sanity check in the anonymous boot function will execute no matter what.
*/
async function sanityChecks(){
return true; //end sanityChecks
}
function mainish(){
document.querySelector("BUTTON.start").click();
} //end mainish
function eventish(){
} //end eventish
/*
Place CSS/style related changes in this section.
*/
function stylish(){
} //end stylish
Editor is loading...