m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Chrzanowski <m@m-chrzan.xyz>2021-07-26 12:15:35 +0200
committerMarcin Chrzanowski <m@m-chrzan.xyz>2021-07-26 12:15:35 +0200
commitdac711516dd2843b6a15daf3a22c551d018ee93d (patch)
tree7d5d7447d6e61a0d6fdcdb8f8f390bf77fe2a1b3
parentdf93b42217f7406662fe4524fd2871998e8f4b4e (diff)
Remove debugging logs
-rw-r--r--src/donate.html3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/donate.html b/src/donate.html
index 7996856..d595e81 100644
--- a/src/donate.html
+++ b/src/donate.html
@@ -71,15 +71,12 @@ DOGE:
</details>
<script>
- console.log('in script?')
function copy(id) {
- console.log('in copy')
const text = document.getElementById(id)
text.hidden=false
text.select()
text.setSelectionRange(0, 9999)
document.execCommand("copy")
text.hidden=true
- console.log('copied')
}
</script>