canaille-globuzma/canaille/static/js/invite.js

9 lines
277 B
JavaScript
Raw Normal View History

2021-12-01 11:19:28 +00:00
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);