From 5c80c2f3bdeac7c1558c2a1b0345ca342971df45 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 12 May 2016 22:23:58 -0400 Subject: [PATCH] todomvc: Noticed a bug --- js/examples/todo/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/examples/todo/index.js b/js/examples/todo/index.js index 90aaed5..dcf208b 100644 --- a/js/examples/todo/index.js +++ b/js/examples/todo/index.js @@ -21,6 +21,8 @@ assertion type show(completed); we, by using "hidden" class, are kind of partly doing it on a view level. We could either continue to do this, or switch to a proper model level approach, but then we'd lose stability of ordering! + + - BUG: doesn't hide an item if in "Active" state and you click on the checkbox */ var ESCAPE_KEY_CODE = 27;