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

10 lines
166 B
JavaScript
Raw Normal View History

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