modal share checkbox
All checks were successful
Deploy / Deploy to pre-production (push) Successful in 5s

This commit is contained in:
Julie Blanc 2025-12-24 10:47:06 +01:00
parent 5914178e2f
commit ee6408f05f
6 changed files with 49 additions and 7 deletions

View file

@ -1,7 +1,6 @@
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() {
@ -16,4 +15,9 @@ export function copyLink() {
});
});
});
}
}
export function shareModal() {
let buttons = document.querySelectorAll('.btn__share');
}