import static files

This commit is contained in:
2025-06-29 21:11:19 +03:00
parent 21b62a12f9
commit dfb662c646
14 changed files with 1943 additions and 0 deletions

View File

@ -0,0 +1,7 @@
for (let button of document.querySelectorAll(".copy-code")) {
button.addEventListener("click", async () => {
await navigator.clipboard.writeText(button.value)
button.textContent = "Copied!"
setTimeout(() => {button.textContent = "Copy"}, 1000.0)
})
}