remove timestamps from output

This commit is contained in:
Pelanyo Kamara 2021-12-14 21:58:25 +00:00
parent 1b26392995
commit 7495dac4d5
No known key found for this signature in database
GPG key ID: 1C8B9C40A2527035

View file

@ -91,7 +91,7 @@
// Misc Functions
function output(text) {
output_box = document.getElementById("output");
output_box.value += "[" + new Date().toLocaleTimeString() + "] " + text.replace('stdin:', '') + "\n";
output_box.value += text.replace('stdin:', '') + "\n";
// scroll to bottom
output_box.scrollTop = output_box.scrollHeight;
}