diff --git a/docs/_includes/repl.html b/docs/_includes/repl.html
index 2c6b8f7d..caeda822 100644
--- a/docs/_includes/repl.html
+++ b/docs/_includes/repl.html
@@ -4,66 +4,38 @@
-
-
+
+ Clear Output
-
-
+
+
+
@@ -88,9 +60,14 @@
}
});
- // Misc Functions
+ var lastError = undefined;
+
function output(text) {
- output_box = document.getElementById("output");
+ var output_clear = document.getElementById("output-clear");
+ var output_box = document.getElementById("output");
+ if (output_clear.checked) {
+ output_box.value = '';
+ }
output_box.value += text.replace('stdin:', '') + "\n";
// scroll to bottom
output_box.scrollTop = output_box.scrollHeight;
@@ -100,18 +77,21 @@
'print': function (msg) { output(msg) }
};
- function clearInput() {
- editor.setValue("");
- }
-
- function clearOutput() {
- document.getElementById("output").value = "";
- }
-
function executeScript() {
+ if (lastError) {
+ editor.removeLineClass(lastError, "background", "line-error");
+ lastError = undefined;
+ }
+
var err = Module.ccall('executeScript', 'string', ['string'], [editor.getValue()]);
if (err) {
- output('Error:' + err.replace('stdin:', ''));
+ var err_text = err.replace('stdin:', '');
+ output('Error:' + err_text);
+
+ var err_line = parseInt(err_text);
+ if (err_line) {
+ lastError = editor.addLineClass(err_line-1, "background", "line-error");
+ }
}
}
diff --git a/docs/_pages/demo.md b/docs/_pages/demo.md
index fefa4b20..dbba8e6e 100644
--- a/docs/_pages/demo.md
+++ b/docs/_pages/demo.md
@@ -1,6 +1,7 @@
---
permalink: /demo
title: Demo
+classes: wide
---
{% include repl.html %}