Files
notifications-admin/app/assets/javascripts/date.js
T

8 lines
204 B
JavaScript
Raw Normal View History

2025-10-14 13:20:58 -04:00
export function initCurrentYear() {
const currentYearElement = document.getElementById("current-year");
2023-11-16 12:02:59 -05:00
2025-10-14 13:20:58 -04:00
if (currentYearElement) {
currentYearElement.textContent = new Date().getFullYear();
}
}