From fd807972160e5e1d963184aba2699873e6b123d3 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 6 Sep 2024 15:28:35 +0000 Subject: [PATCH] Set initial value based on name argument --- index.html | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 708ee1f..32a22f3 100644 --- a/index.html +++ b/index.html @@ -283,7 +283,7 @@
₿ - +
+ @@ -368,7 +383,7 @@ document.getElementById("address").oninput = check_text; check_text(); document.getElementById("address").onfocus = function() { - if (this.value === 'send.some@satsto.me') + if (this.value === window.default_hrn) document.getElementById("address").select(); }; document.getElementById("address").onkeydown = function(event) { -- 2.39.5