diff --git a/index.html b/index.html index ec675306..8b16cb98 100644 --- a/index.html +++ b/index.html @@ -94,9 +94,7 @@ button {
- Output: -

-    Log:
+    Console:
     

   
diff --git a/native.js b/native.js index 9b76eec6..b6b76cd8 100644 --- a/native.js +++ b/native.js @@ -511,7 +511,7 @@ Native["com/sun/cldchi/io/ConsoleOutputStream.write.(I)V"] = (function() { return function(ctx, stack) { var ch = stack.pop(), obj = stack.pop(); if (ch === 10) { - document.getElementById("output").textContent += s + "\n"; + console.info(s); s = ""; return; }