From e613e3d722c357351a5525e2529c4a7f53cafd39 Mon Sep 17 00:00:00 2001 From: Mike Rockwell Date: Mon, 28 Jul 2025 11:41:52 -0400 Subject: [PATCH] Continue work on getting a working copy notice --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index 4877081..1f23840 100644 --- a/app.js +++ b/app.js @@ -24,7 +24,7 @@ const ethadd = document.getElementById("ethwall").textContent; const dogeadd = document.getElementById("dogewall").textContent; // Watch for click on BTC wallet address -document.getElementById("btcwall").addEventListener("click", function(){ + document.getElementById("btcwall").addEventListener("click", function(){ // Copy BTC address to clipboard navigator.clipboard.writeText(btcadd); // Display alert to confirm the address was added to clipboard @@ -127,7 +127,7 @@ document.querySelector("#doge-qr-link a").addEventListener("click", function(){ // // Copy BTC address to clipboard // navigator.clipboard.writeText(btcadd); // // Display alert to confirm the address was added to clipboard -// btcwall.insertAdjacentHTML("afterend", "
Copied
"); +// btcwall.insertAdjacentHTML("afterend", "\"\"Copied to Clipboard"); // setTimeout(() => { // document.querySelector("#btc-js-copy").remove(); // }, 10000);