2022-01-29 21:26:32 +00:00
|
|
|
function copyURI(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
navigator.clipboard.writeText(evt.target.getAttribute('href')).then(() => {
|
|
|
|
/* clipboard successfully set */
|
|
|
|
}, () => {
|
|
|
|
/* clipboard write failed */
|
|
|
|
});
|
|
|
|
}
|
2022-01-28 20:47:29 +00:00
|
|
|
|