Roo/form/HtmlEditor.js
authorEdward <edward@roojs.com>
Mon, 8 Jun 2015 08:53:29 +0000 (16:53 +0800)
committerEdward <edward@roojs.com>
Mon, 8 Jun 2015 08:53:29 +0000 (16:53 +0800)
Roo/form/HtmlEditor.js

index 69197db..37ce908 100644 (file)
@@ -260,16 +260,13 @@ Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
         this.keyNav = new Roo.KeyNav(this.el, {
             
             "tab" : function(e){
-                
                 e.preventDefault();
-                Roo.log('TAB');
                 
                 var value = this.getValue();
                 
                 var start = this.el.dom.selectionStart;
                 var end = this.el.dom.selectionEnd;
-                Roo.log(start);
-                Roo.log(end);
+                
                 if(!e.shiftKey){
                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));