copy button should finally work now

This commit is contained in:
Sequoia Haynes 2024-12-03 11:50:14 -08:00
parent 9dc305221d
commit a3fec1fe17

View File

@ -1,8 +1,11 @@
var copyButton = document.getElementById("copyButton")
var ipField = document.getElementById("ip")
function sillyToClipboard(value) {
navigator.clipboard.writeText(value)
}
async function copyToClipboard(){
//ik this function is deprecated, but the main clipboard api doesnt work for me
document.execCommand("copy",false,ipField.value)
sillyToClipboard("ipField.value")
//im too lazy to go make a proper hovertext thing, il do it later
alert("Copied!")
}