From 81de8a753da76566a52a1c8dd80e4d3784e78567 Mon Sep 17 00:00:00 2001
From: John MacFarlane <fiddlosopher@gmail.com>
Date: Tue, 9 Sep 2014 13:59:07 -0700
Subject: Dingus:  use bind('keyup paste cut mouseup'...

Modifies #98.  (Generic 'change' by itself wasn't enough.)
---
 js/index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'js/index.html')

diff --git a/js/index.html b/js/index.html
index 3c75b5c..05fc216 100644
--- a/js/index.html
+++ b/js/index.html
@@ -52,7 +52,7 @@ $(document).ready(function() {
       render();
     }, 0); // ms delay
   };
-  $("#text").change(parseAndRender);
+  $("#text").bind('keyup paste cut mouseup', parseAndRender);
   $(".option").change(render);
 });
   </script>
-- 
cgit v1.2.3