mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-10 05:14:05 -05:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
(function (window) {
|
|
|
|
"use strict";
|
|
|
|
// Show the current year
|
|
document.getElementById("current-year").innerHTML = new Date().getFullYear();
|
|
|
|
|
|
})(window);
|