This commit is contained in:
biglyderv 2025-02-07 12:59:29 -05:00
parent f89a12e914
commit 2e75199852
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5

View file

@ -10,4 +10,10 @@
document.querySelector('.msgs').appendChild(msgC1);
document.querySelector('.msgs').appendChild(msgC2);
}
})()
})()
function copy() {
let addr = 'play.dervland.net:7777';
navigator.clipboard.writeText(addr);
alert(addr);
}