diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 13:51:38 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 13:51:38 +0800 |
commit | f046620bfb37385681f48d861d1f47de50e5f9fc (patch) | |
tree | 2de6ab56807a39b98534434eba4ce6d7dd185559 | |
parent | Better HTML/CSS (diff) | |
download | powxy-f046620bfb37385681f48d861d1f47de50e5f9fc.tar.gz powxy-f046620bfb37385681f48d861d1f47de50e5f9fc.tar.zst powxy-f046620bfb37385681f48d861d1f47de50e5f9fc.zip |
Add iteration count to "found" message
-rw-r--r-- | tmpl.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -260,7 +260,7 @@ for the JavaScript code in this page. let nonce_str = String.fromCharCode(...new Uint8Array(buf)); field.value = btoa(nonce_str); - status_el.textContent = "A solution has been found automatically."; + status_el.textContent = "A solution has been found automatically in " + nonce + " iterations."; return; } |