first pass sorta working, but not true repl yet.

This commit is contained in:
Danny Yoo 2013-02-26 18:15:36 -07:00
parent ce653948cc
commit 0a3b0cd023

View File

@ -4,6 +4,16 @@ $(document).ready(function() {
"use strict"; "use strict";
var repl = $("#repl"); 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. // Hook up a simple one-line REPL with enter triggering evaluation.
$("#repl").keypress(function(e) { $("#repl").keypress(function(e) {
if (e.which == 13 && !repl.attr('disabled')) { if (e.which == 13 && !repl.attr('disabled')) {