From a72c299a2d07edf21e9c9a357d3cd1b3b32e3b9e Mon Sep 17 00:00:00 2001 From: MK Date: Thu, 30 Jan 2014 14:17:59 -0500 Subject: [PATCH] Fixed unescaped a tag causing rendering problems. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19b8123..99d2142 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ See this post for more details on KoLite: http://www.johnpapa.net/kolite1-1 4. The asyncCommand's canExecute now defaults to !isExecuting if no canExecute delegate is specified. This eliminates the need of a canExecute delegate in you view-model when you only want disable the bound element when the command is executing. -5. Explicitly do not execute commands when canExecute returns falsy. This is needed for DOM elements like the which cannot be disabled. +5. Explicitly do not execute commands when canExecute returns falsy. This is needed for DOM elements like the `` which cannot be disabled. 6. Renamed file knockout.asyncCommand.js to knockout.command.js as it now contains both async and sync commands.