mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 04:16:07 +00:00
8 lines
230 B
JavaScript
8 lines
230 B
JavaScript
function copyToClipboard(data) {
|
|
try {
|
|
navigator.clipboard.writeText(data)
|
|
addNotification("Copied to clipboard!", 4);
|
|
} catch (err) {
|
|
addNotification("Oh noes, something when wrong D:", 2);
|
|
}
|
|
} |