mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
remove timestamps from output
This commit is contained in:
parent
1b26392995
commit
7495dac4d5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue