From 43a7386e69637fac05c202139658015000f2b408 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 13 Jul 2024 19:56:11 +0000 Subject: [PATCH] Provide somewhat more spacing within the result text section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 03ac955..84aa167 100644 --- a/index.html +++ b/index.html @@ -314,10 +314,10 @@ addr_idx += 1; addr_ty_table += "
" + value + "
"; }; - var res = "

It works!

" + name + " was successfully resolved to the following addresses.
Your wallet should have automatically opened to pay, but if not, click here to do so."; + var res = "

It works!

" + name + " was successfully resolved to the following addresses.

Your wallet should have automatically opened to pay, but if not, click here to do so.

"; if (base_and_params[0].length != 0) { if (base_and_params[0].startsWith("sp1q")) { - res += "
Note: the response included a Silent Payment address which was encoded in the \"body\" position in the URI (i.e. bitcoin:sp1q...) rather than in the \"sp\" query parameter (i.e. bitcoin:?sp=sp1q...). This is incorrect and may cause some wallets to fail to pay on-chain."; + res += "

Note: the response included a Silent Payment address which was encoded in the \"body\" position in the URI (i.e. bitcoin:sp1q...) rather than in the \"sp\" query parameter (i.e. bitcoin:?sp=sp1q...). This is incorrect and may cause some wallets to fail to pay on-chain.

"; push_table_entry("On-Chain Silent Payment", "", base_and_params[0]); } else { push_table_entry("On-Chain Non-Private Address", "", base_and_params[0]); -- 2.39.5