mirror of
https://github.com/ced4568/ceds-noc.git
synced 2026-08-13 05:14:03 +00:00
6 lines
190 B
JavaScript
6 lines
190 B
JavaScript
document.addEventListener("DOMContentLoaded", () => {
|
|
const yearSpan = document.querySelector("[data-year]");
|
|
if (yearSpan) {
|
|
yearSpan.textContent = new Date().getFullYear();
|
|
}
|
|
}); |