diff --git a/whalesong/repl-prototype/htdocs/repl.js b/whalesong/repl-prototype/htdocs/repl.js index d77e892..d30ae0a 100644 --- a/whalesong/repl-prototype/htdocs/repl.js +++ b/whalesong/repl-prototype/htdocs/repl.js @@ -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')) {