mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 11:23:48 -05:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
(function (window) {
|
|
"use strict";
|
|
|
|
// Show the current year
|
|
const currentYearElement = document.getElementById("current-year");
|
|
|
|
if (currentYearElement) {
|
|
currentYearElement.textContent = new Date().getFullYear();
|
|
}
|
|
})(window); |