X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=index.html;h=b36254964a2212e889e68312db54f55e5c3c597e;hb=931b341b6782d5952682922097bb1bf624664dd3;hp=ea4f0abc41913047ac138c883ee3ed50649040ff;hpb=45ec0d495bf05aa62fba0be4a0e07ed29500707b;p=zombocom-ai 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";