1
0
Fork 0
ncpn/static/script.js

15 lines
368 B
JavaScript
Raw Permalink Normal View History

2024-06-09 18:29:07 +02:00
document
.querySelectorAll("time[datetime]")
.forEach(
(e) =>
(e.innerText = new Date(
e.getAttribute("datetime")
).toLocaleString())
);
2024-11-17 22:52:17 +01:00
function copyPasteContent() {
navigator.clipboard
.writeText(document.getElementById("paste-content").textContent)
.catch((e) => console.error(e));
}