mirror of
https://git.kittycat.homes/zoe/reversi.git
synced 2024-08-15 03:27:19 +00:00
10 lines
294 B
JavaScript
10 lines
294 B
JavaScript
function copyURI(evt) {
|
|
evt.preventDefault();
|
|
navigator.clipboard.writeText(evt.target.getAttribute('href')).then(() => {
|
|
/* clipboard successfully set */
|
|
document.getElementById("urlForCopy").innerHTML = "copied";
|
|
}, () => {
|
|
/* clipboard write failed */
|
|
});
|
|
}
|
|
|