Files
notifications-admin/app/assets/javascripts/date.js
2023-11-16 12:02:59 -05:00

10 lines
166 B
JavaScript

(function (window) {
"use strict";
// Show the current year
document.getElementById("current-year").innerHTML = new Date().getFullYear();
})(window);