canaille-globuzma/canaille/static/js/invite.js
2021-12-01 12:19:28 +01:00

8 lines
277 B
JavaScript

function copy() {
var copyText = document.querySelector("#copy-text");
copyText.select();
document.execCommand("copy");
}
document.querySelector("#copy-button").addEventListener("click", copy);
document.querySelector("#copy-text").addEventListener("focus", copy);