Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
Senarin committed Dec 17, 2023
1 parent 63b0469 commit 4b4e7c9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions js/render_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ var renderTable = {
}

wholeTable.appendChild(tableHeader);

var januaryEntry = document.createElement("tr");
var januaryLine = document.createElement("th");
januaryLine.colSpan="3";
januaryLine.appendChild(document.createTextNode("1월"));
januaryEntry.appendChild(januaryLine);
wholeTable.appendChild(januaryLine);

var entriesData = rawData.entries;
for(e=0;e<entriesData.length;e++){
var entriesEach = document.createElement("tr");
Expand Down

0 comments on commit 4b4e7c9

Please sign in to comment.