yw5ncom/js/copy.js
ange d8ecbef86e
All checks were successful
/ deploy (push) Successful in 54s
feat: aliases
2025-04-05 08:00:54 +00:00

14 lines
303 B
JavaScript

function copyElem(id, r='') {
navigator.clipboard.writeText(
document.getElementById(id).innerText.replaceAll(r, ''),
);
}
function copyFile(id) {
fetch(document.getElementById(id).childNodes[0].href).then(f => {
f.text().then(t => {
navigator.clipboard.writeText(t);
})
})
}