Skip to content
Snippets Groups Projects
Unverified Commit 077bf192 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Remove calendar.js

parent 91bd80e3
No related branches found
No related tags found
No related merge requests found
Pipeline #175213 passed
document.addEventListener("DOMContentLoaded", function () {
var month = document.getElementById("year_and_month");
if (month == null) {
return;
}
var date = new Date();
month.innerHTML =
"" +
date.toLocaleString("de-de", { month: "long" }) +
" " +
date.getFullYear();
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment