mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Remove .replace('stdin:', '')
This commit is contained in:
parent
1d9bac79fe
commit
29ad780853
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@
|
||||||
|
|
||||||
function output(text) {
|
function output(text) {
|
||||||
var output_box = document.getElementById("output");
|
var output_box = document.getElementById("output");
|
||||||
output_box.value += text.replace('stdin:', '') + "\n";
|
output_box.value += text + "\n";
|
||||||
// scroll to bottom
|
// scroll to bottom
|
||||||
output_box.scrollTop = output_box.scrollHeight;
|
output_box.scrollTop = output_box.scrollHeight;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue