Update main.js

pull/1/merge
Elijah Bansley 2018-05-19 01:20:01 -05:00 committed by GitHub
parent e3a06d484f
commit be71e051d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ function readFileAsArrayBuffer(file) {
} }
function logOutput(...message) { function logOutput(...message) {
document.getElementById("output").innerHTML += message.join(" ") + "\n"; document.getElementById("output").innerHTML = document.getElementById("output").innerHTML + message.join(" ") + "\n";
} }
function clearLog() { function clearLog() {