site/_includes/scripts/button.js
Ruben 766ea35e2c
All checks were successful
/ build (push) Successful in 53s
clean up, minify javascript
2025-06-02 12:12:28 -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!");
}