index-website-static/assets/js/share.js
Julie Blanc 5914178e2f
All checks were successful
Deploy / Deploy to pre-production (push) Successful in 5s
modal share
2025-12-23 19:17:52 +01:00

19 lines
No EOL
710 B
JavaScript

export function copyLink() {
let buttons = document.querySelectorAll('.copy-link button');
buttons.forEach(function (button, index) {
console.log(button);
let link = button.parentNode.querySelector("input").value;
button.addEventListener('click', function() {
navigator.clipboard.writeText(link).then(() => {
const originalText = button.textContent;
button.textContent = 'Lien copié';
setTimeout(() => {
button.textContent = originalText;
}, 1000);
}).catch(err => {
console.error('Erreur lors de la copie:', err);
});
});
});
}