diff --git a/index.js b/index.js index c4eb31d..28654a1 100644 --- a/index.js +++ b/index.js @@ -7,6 +7,7 @@ let waux = 10; let haux = 10; let x = "✔"; let o = "⬤"; +let randomize = true; let lauxgrid = new Array(w); let rauxgrid = new Array(w); //Write arrays to html @@ -99,10 +100,12 @@ function randomizeaux(){ function main() { inittable(); initauxtable(); - randomizetable(); - writegrid(); - randomizeaux(); - writeauxgrid(); + if (randomize) { + randomizetable(); + writegrid(); + randomizeaux(); + writeauxgrid(); + } } $(function () {