From 4df0ace18ec14ade8edabdaf60b02dc27ea56966 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Fri, 8 Mar 2019 20:46:22 -0500 Subject: [PATCH] Culturally neutral emoji based on observations at Augusta Puzzle event --- theme/puzzle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/puzzle.js b/theme/puzzle.js index e54dfff..f0bbba3 100644 --- a/theme/puzzle.js +++ b/theme/puzzle.js @@ -189,10 +189,10 @@ function answerCheck(e) { } if (possiblyCorrect) { - ok.textContent = "" + ok.textContent = "❓" ok.title = "Possibly correct" } else { - ok.textContent = "🙅" + ok.textContent = "⛔" ok.title = "Definitely not correct" } }