X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=index.html;h=fb8cbc0d3a7f52006518d8c1baf172378a50b843;hb=53806afc9bf4bc0cfdd069a6de63db820b004d4a;hp=83afa86e19aaa418a21fbc1825141cdfb52756c6;hpb=344784f27434ed505982ffc74558af98ebb1a5b9;p=zombocom-ai diff --git a/index.html b/index.html index 83afa86..fb8cbc0 100644 --- a/index.html +++ b/index.html @@ -135,9 +135,11 @@ mute.addEventListener("click", () => { const img = document.createElement('img'); img.src = image.filename; const p_prompt = document.createElement('p'); - p_prompt.innerHtml = `Prompt: ${image.prompt}`; + const prompt_text = document.createTextNode(`Prompt: ${image.prompt}`); + p_prompt.appendChild(prompt_text); const p_code = document.createElement('p'); - p_code.innerHtml = `Code: ${image.code}`; + const code_text = document.createTextNode(`Code: ${image.code}`); + p_code.appendChild(code_text); images.appendChild(img); images.appendChild(p_prompt); images.appendChild(p_code);