Roo/form/HtmlEditor.js
authorChris <chris@roojs.com>
Fri, 12 Jul 2013 08:01:00 +0000 (16:01 +0800)
committerChris <chris@roojs.com>
Fri, 12 Jul 2013 08:01:00 +0000 (16:01 +0800)
Roo/form/HtmlEditor.js

index 7241e34..1495c35 100644 (file)
@@ -472,14 +472,13 @@ Roo.form.HtmlEditor = Roo.extend(Roo.form.Field, {
     pushValue : function(){
         if(this.initialized){
             var v = this.el.dom.value;
-            Roo.log(v);
+            
             if(v.length < 1){
                 v = '&#160;';
             }
             
             if(this.fireEvent('beforepush', this, v) !== false){
                 var d = (this.doc.body || this.doc.documentElement);
-                Roo.log(d);
                 d.innerHTML = v;
                 this.cleanUpPaste();
                 this.el.dom.value = d.innerHTML;