This commit is contained in:
Boof 2023-04-27 10:23:35 +02:00 committed by GitHub
parent 7ed403fc89
commit 0d3744512c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
function preGenerate() {
async function preGenerate() {
let statusText = document.getElementById("status")
statusText.innerText = "Generating, please wait!"
generatePrime()
};
function afterGenerate() {
async function afterGenerate() {
let statusText = document.getElementById("status")
statusText.innerText = "Generated!"
};