From: Carl Worth <cworth@cworth.org>
Date: Thu, 8 Dec 2022 16:22:20 +0000 (-0800)
Subject: Don't show any images until the user generates a new one
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=94706668717da57af5def7f4153e35baa434224c;p=zombocom-ai

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.
---

diff --git a/index.html b/index.html
index d3f25aa..a1f4e51 100644
--- a/index.html
+++ b/index.html
@@ -74,7 +74,7 @@
       </form>
     </p>
 
-    <div id="images">
+    <div id="images" style="display: none">
     </div>
 
     <audio loop="" src="/zombo_words.mp3" type="audio/mpeg"></audio>
@@ -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) {