site/scripts/button.js
Ruben 214441ad40
All checks were successful
/ build (push) Successful in 32s
organize scripts
2025-04-15 11:53:22 -05:00

14 lines
No EOL
531 B
JavaScript

// snippet that copies the html for my button(s)
function copyButtonSneexy() {
navigator.clipboard.writeText(
'<a href="https://synth.download"><img src="https://synth.download/assets/buttons/sneexy.svg" alt="Sneexy"></a>'
);
alert("button html copied!");
}
function copyButtonSynthDownload() {
navigator.clipboard.writeText(
'<a href="https://synth.download"><img src="https://synth.download/assets/buttons/synth.download.svg" alt="Synth.Download!"></a>'
);
alert("button html copied!");
}