diff options
author | cyfraeviolae <cyfraeviolae> | 2022-02-28 22:20:52 -0500 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2022-02-28 22:20:52 -0500 |
commit | b7a5d24b671cb62d066cfb04d6f9d9bfa4714e90 (patch) | |
tree | da2bd525f72b220769c4d3058477710231b2d5c9 /static/script.js | |
parent | 6d3bb3db5d0e4f115d3e79b4ece23627affad8a5 (diff) |
one more poem
Diffstat (limited to 'static/script.js')
-rw-r--r-- | static/script.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/static/script.js b/static/script.js index 325b8e5..4648567 100644 --- a/static/script.js +++ b/static/script.js @@ -194,7 +194,8 @@ function winGame(challenge) { winEl.style = 'display: block;' document.getElementById('btns').style = 'display: none;' document.getElementById('meter').innerText = challenge.meter - document.getElementById('ctx').innerHTML = challenge.ctx.replaceAll(/^(.*)/gm, ' $1') + `\n\t<span class="byline">—<a href="${challenge.link}">${challenge.title}</a>\n\t\t${challenge.collection}, ${challenge.author}</span>` + var collection = challenge.collection ? `${challenge.collection}, ` : "" + document.getElementById('ctx').innerHTML = challenge.ctx.replaceAll(/^(.*)/gm, ' $1') + `\n\t<span class="byline">—<a href="${challenge.link}">${challenge.title}</a>\n\t\t${collection}${challenge.author}</span>` var firstguess = Object.values(guesses[0]).join(' ') document.getElementById('share').value = `I solved Prosodyle #${getChallengeIdx()+1} at cyfraeviolae.org/prosodyle. My first guess was: "${firstguess}."` } |