breaking appears to be doing a little better now.

This commit is contained in:
Danny Yoo 2013-03-08 16:49:27 -07:00
parent b76644ee46
commit 7a21f1f9b4
2 changed files with 5 additions and 3 deletions

View File

@ -8,7 +8,7 @@
<body>
<h1>Repl experiment</h1>
<div id="output"></div>
<div id="output" style="width:500px; height:300px; border:1px solid black; overflow:scroll"></div>
<br/>
<input id="repl" type="text" style="width:500px"></input><img id="break" src="break.png"/>
</body>

View File

@ -15,10 +15,12 @@ $(document).ready(function() {
// We configure output to send it to the "output" DOM node.
M.params.currentDisplayer = function(MACHINE, domNode) {
$(domNode).appendTo(output);
}
output.get(0).scrollTop = output.get(0).scrollHeight;
};
M.params.currentErrorDisplayer = function(MACHINE, domNode) {
$(domNode).css("color", "red").appendTo(output);
}
output.get(0).scrollTop = output.get(0).scrollHeight;
};
// We then want to initialize the language module.