mirror of
https://github.com/ConjureETS/Site.git
synced 2026-03-24 09:40:57 +00:00
7 lines
191 B
JavaScript
7 lines
191 B
JavaScript
(function() {
|
|
addCopyrightCurrentDate();
|
|
})();
|
|
|
|
function addCopyrightCurrentDate() {
|
|
document.querySelector('footer').querySelector('p').innerHTML += ' ' + new Date().getFullYear();
|
|
} |