yw5ncom/static/copy.js

14 lines
303 B
JavaScript
Raw Permalink Normal View History

2024-12-14 08:34:47 +00:00
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);
})
})
}