From d1125f3af359b7c50f94bc38d12fec778e06e26f Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Tue, 26 Feb 2013 15:31:38 -0700 Subject: [PATCH] sketching. --- whalesong/repl-prototype/htdocs/index.html | 3 +++ whalesong/repl-prototype/htdocs/repl.js | 25 ++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 whalesong/repl-prototype/htdocs/repl.js diff --git a/whalesong/repl-prototype/htdocs/index.html b/whalesong/repl-prototype/htdocs/index.html index ed34ab4..e489fe2 100644 --- a/whalesong/repl-prototype/htdocs/index.html +++ b/whalesong/repl-prototype/htdocs/index.html @@ -3,8 +3,11 @@ +

Repl experiment

+ + diff --git a/whalesong/repl-prototype/htdocs/repl.js b/whalesong/repl-prototype/htdocs/repl.js new file mode 100644 index 0000000..591cbe9 --- /dev/null +++ b/whalesong/repl-prototype/htdocs/repl.js @@ -0,0 +1,25 @@ +"use strict"; + +$(document).ready(function() { + + $("#repl").keypress(function(e) { + if (e.which == 13) { + var repl = $(this); + var src = repl.val(); + $(this).val(""); + repl.attr('disabled', 'true'); + repl.val("... evaluating..."); + evaluate(src, + function() { repl.removeAttr('disabled'); + repl.val("");}); + } + }); + + var evaluate = function(src, after) { + console.log("about to eval", src); + + // fill me in. + setTimeout(after, 1000); + }; + +});