breaking appears to be doing a little better now.
This commit is contained in:
parent
b76644ee46
commit
7a21f1f9b4
|
@ -8,7 +8,7 @@
|
||||||
<body>
|
<body>
|
||||||
<h1>Repl experiment</h1>
|
<h1>Repl experiment</h1>
|
||||||
|
|
||||||
<div id="output"></div>
|
<div id="output" style="width:500px; height:300px; border:1px solid black; overflow:scroll"></div>
|
||||||
<br/>
|
<br/>
|
||||||
<input id="repl" type="text" style="width:500px"></input><img id="break" src="break.png"/>
|
<input id="repl" type="text" style="width:500px"></input><img id="break" src="break.png"/>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -15,10 +15,12 @@ $(document).ready(function() {
|
||||||
// We configure output to send it to the "output" DOM node.
|
// We configure output to send it to the "output" DOM node.
|
||||||
M.params.currentDisplayer = function(MACHINE, domNode) {
|
M.params.currentDisplayer = function(MACHINE, domNode) {
|
||||||
$(domNode).appendTo(output);
|
$(domNode).appendTo(output);
|
||||||
}
|
output.get(0).scrollTop = output.get(0).scrollHeight;
|
||||||
|
};
|
||||||
M.params.currentErrorDisplayer = function(MACHINE, domNode) {
|
M.params.currentErrorDisplayer = function(MACHINE, domNode) {
|
||||||
$(domNode).css("color", "red").appendTo(output);
|
$(domNode).css("color", "red").appendTo(output);
|
||||||
}
|
output.get(0).scrollTop = output.get(0).scrollHeight;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
// We then want to initialize the language module.
|
// We then want to initialize the language module.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user