Open creator on page load

This commit is contained in:
Josh birnholz
2023-02-18 17:15:32 -05:00
parent 6ffa7122fe
commit 8d9b549a8d
2 changed files with 7 additions and 2 deletions

View File

@@ -117,4 +117,9 @@ function bindInputs(query1, query2, checkbox = false) {
e1.oninput = (event) => {e2.value = e1.value;}
e2.oninput = (event) => {e1.value = e2.value;}
}
}
}
document.addEventListener('DOMContentLoaded', function() {
document.body.dispatchEvent(new Event('doCreate'));
})