index-website-static/assets/js/share.js
Julie Blanc 32f45ceeca
All checks were successful
Deploy / Deploy to pre-production (push) Successful in 5s
banner on mobile
2025-12-24 16:00:47 +01:00

19 lines
683 B
JavaScript

export function copyLink() {
let buttons = document.querySelectorAll('.copy-link button');
buttons.forEach(function (button, index) {
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);
});
});
});
}