This repository has been archived on 2025-08-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
porom/js/copy-code.js
T
2025-05-24 05:12:46 +03:00

8 lines
267 B
JavaScript

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)
})
}