first pass sorta working, but not true repl yet.
This commit is contained in:
parent
ce653948cc
commit
0a3b0cd023
|
@ -4,6 +4,16 @@ $(document).ready(function() {
|
|||
"use strict";
|
||||
|
||||
var repl = $("#repl");
|
||||
var output = $("#output");
|
||||
|
||||
plt.runtime.currentMachine.params.currentDisplayer = function(MACHINE, domNode) {
|
||||
$(domNode).appendTo(output);
|
||||
}
|
||||
plt.runtime.currentMachine.params.currentErrorDisplayer = function(MACHINE, domNode) {
|
||||
$(domNode).appendTo(output);
|
||||
}
|
||||
|
||||
|
||||
// Hook up a simple one-line REPL with enter triggering evaluation.
|
||||
$("#repl").keypress(function(e) {
|
||||
if (e.which == 13 && !repl.attr('disabled')) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user