diff --git a/app.js b/app.js index 697b338..f91413a 100644 --- a/app.js +++ b/app.js @@ -13,6 +13,8 @@ window.onload = async function () { fillBoard(weights, bias); + document.querySelector(".loading").style.display = "none"; + document.querySelector(".reset").addEventListener("click", function () { data = Array.from({ length: 784 }, () => 0); document.querySelector(".output").innerHTML = ""; diff --git a/index.html b/index.html index ee15827..34641af 100644 --- a/index.html +++ b/index.html @@ -10,6 +10,10 @@
+