This commit is contained in:
2024-11-28 12:15:13 +01:00
parent fc299bd4a3
commit 192c6d4a63
27 changed files with 213 additions and 2 deletions

View File

@ -11,7 +11,7 @@ document.addEventListener("DOMContentLoaded", ()=>{
}
table.appendChild(row);
var weekdaycounter = 1;
for(var i = 1; i < 12; i++){
for(var i = 1; i <= 12; i++){
row = document.createElement("tr");
var first = document.createElement("th");
first.innerText = `${i}`;