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

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);