Files
Sheep-Service/web/lib/components/clipboard.js
2025-09-09 00:10:53 +03:00

5 lines
172 B
JavaScript

clipboard = (text) => {
navigator.clipboard.writeText(text)
.then(() => alert("Посилання скопійовано!"))
.catch(err => console.error(err))
}