Skip to content

Commit

Permalink
log out
Browse files Browse the repository at this point in the history
  • Loading branch information
FallBackITA27 committed Apr 11, 2024
1 parent 58bb585 commit b646172
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions mkwpp-parser/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,16 @@ document.getElementById("readInput").addEventListener("click", async function()
}
data.submissions.push(currentSubmission);
console.log("Finished");

for (let submission in data.submissions) {
if (submission.err || submission.skip) {
if (submission.err) {
writeToOutput("Error with submission: " + submission.errString);
}
}
writeToOutput("Name: "+submission.name);
writeToOutput("Date: "+submission.date);
}
});

document.addEventListener("DOMContentLoaded", function() {
Expand Down

0 comments on commit b646172

Please sign in to comment.