From 45aeb7d12a376d7d0f8477bb1577da71e81ddcc5 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Fri, 5 Apr 2013 15:18:05 -0600 Subject: [PATCH] clearing on reset --- whalesong/repl-prototype/htdocs/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/whalesong/repl-prototype/htdocs/index.js b/whalesong/repl-prototype/htdocs/index.js index e3f300d..d8f8436 100644 --- a/whalesong/repl-prototype/htdocs/index.js +++ b/whalesong/repl-prototype/htdocs/index.js @@ -25,7 +25,10 @@ jQuery(document).ready(function() { var onReset = function() { - repl.reset(allowInput); + repl.reset(function() { + output.empty(); + allowInput(); + }); };