From c9c8f5894a10eee9a740fcab6576a00cb273c72b Mon Sep 17 00:00:00 2001
From: vitalets <noginsk@rambler.ru>
Date: Thu, 29 Nov 2012 15:12:52 +0400
Subject: [PATCH] comments for docs

---
 src/containers/editable-container.js | 5 +++--
 src/inputs/abstract.js               | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/containers/editable-container.js b/src/containers/editable-container.js
index 0228d55..56d7290 100644
--- a/src/containers/editable-container.js
+++ b/src/containers/editable-container.js
@@ -388,7 +388,8 @@ Applied as jQuery method.
         **/        
         autohide: true,
         /**
-        Action when click outside container. Can be <code>cancel|submit|ignore</code>
+        Action when user clicks outside the container. Can be <code>cancel|submit|ignore</code>
+        Setting <code>ignore</code> ignore allows to have several containers open. 
 
         @property onblur 
         @type string
@@ -409,4 +410,4 @@ Applied as jQuery method.
         }
     };    
 
-}(window.jQuery));
\ No newline at end of file
+}(window.jQuery));
diff --git a/src/inputs/abstract.js b/src/inputs/abstract.js
index 6fe6dfe..fe7ed84 100644
--- a/src/inputs/abstract.js
+++ b/src/inputs/abstract.js
@@ -123,7 +123,7 @@ To create your own input you should inherit from this class.
        },
        
        /**
-       method to escape html
+        method to escape html.
        **/
        escape: function(str) {
            return $('<div>').text(str).html();