diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 10:56:56 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 10:56:56 +0800 |
commit | 9363903ed04a7cf5cca7c87f18a6a3fc4732d670 (patch) | |
tree | d5316b20c4fccf1bf7dc7a88f2ab7f938cf2f07a /tmpl.go | |
parent | No cookie without consent (diff) | |
download | powxy-9363903ed04a7cf5cca7c87f18a6a3fc4732d670.tar.gz powxy-9363903ed04a7cf5cca7c87f18a6a3fc4732d670.tar.zst powxy-9363903ed04a7cf5cca7c87f18a6a3fc4732d670.zip |
Don't tell the user to press submit when solution found
See last commit, we don't want to 'compel' them
Diffstat (limited to 'tmpl.go')
-rw-r--r-- | tmpl.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ document.addEventListener("DOMContentLoaded", function() { let nonce_str = String.fromCharCode(...new Uint8Array(buf)); field.value = btoa(nonce_str); - status_el.textContent = "Solution found. Please press the submit button."; + status_el.textContent = "Solution found."; return; } |