sketching.
This commit is contained in:
parent
2d99cea537
commit
d1125f3af3
|
@ -3,8 +3,11 @@
|
|||
<head>
|
||||
<script src="collects/runtime.js"></script>
|
||||
<script src="collects/whalesong-lang.js"></script>
|
||||
<script src="repl.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Repl experiment</h1>
|
||||
|
||||
<input id="repl" type="text" style="width:500px"></input>
|
||||
</body>
|
||||
</html>
|
||||
|
|
25
whalesong/repl-prototype/htdocs/repl.js
Normal file
25
whalesong/repl-prototype/htdocs/repl.js
Normal file
|
@ -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);
|
||||
};
|
||||
|
||||
});
|
Loading…
Reference in New Issue
Block a user