From 94706668717da57af5def7f4153e35baa434224c Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 8 Dec 2022 08:22:20 -0800 Subject: [PATCH] Don't show any images until the user generates a new one This way, every new user will have a similar initial experience and get forced to figure out the image-generation form before seeing anything else on the page. --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index d3f25aa..a1f4e51 100644 --- a/index.html +++ b/index.html @@ -74,7 +74,7 @@

-
+ @@ -224,6 +224,8 @@ mute.addEventListener("click", () => { /* Re-display the form and hide spinner now that generation is over. */ clearTimeout(spinner_timeout); hide_spinner(); + /* Also display all of the images. */ + images.style.display = "block"; }); function random_from(items) { -- 2.43.0