From: Carl Worth Date: Sun, 11 Dec 2022 19:29:01 +0000 (-0800) Subject: Merge remote-tracking branch 'origin/main' X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=4c65e741e90eb7589d42cdf6ed825060e4ab15c6;hp=c7399ddc7ac3efd6797c3011959f2ac9d3f6e966;p=zombocom-ai Merge remote-tracking branch 'origin/main' --- diff --git a/index.html b/index.html index ea4f0ab..b362549 100644 --- a/index.html +++ b/index.html @@ -178,20 +178,22 @@ mute.addEventListener("click", () => { img.src = image.filename; figure.appendChild(img); - const figcaption = document.createElement('figcaption'); - const caption_text = document.createTextNode(`${image.prompt} (${image.code}) `); - figcaption.appendChild(caption_text); + if (image.prompt && image.code) { + const figcaption = document.createElement('figcaption'); + const caption_text = document.createTextNode(`${image.prompt} (${image.code}) `); + figcaption.appendChild(caption_text); - const reuse_button = document.createElement('button'); - reuse_button.appendChild(document.createTextNode("Reuse")); - figcaption.appendChild(reuse_button); + const reuse_button = document.createElement('button'); + reuse_button.appendChild(document.createTextNode("Reuse")); + figcaption.appendChild(reuse_button); - reuse_button.addEventListener('click', () => { - prompt.value = image.prompt; - window.scrollTo(0,0); - }); + reuse_button.addEventListener('click', () => { + prompt.value = image.prompt; + window.scrollTo(0,0); + }); - figure.appendChild(figcaption); + figure.appendChild(figcaption); + } const dl_comments = document.createElement('dl'); dl_comments.className = "comments";