Roo/htmleditor/FilterEmpty.js
authorleon <leon@roojs.com>
Tue, 27 Feb 2024 02:25:59 +0000 (10:25 +0800)
committerleon <leon@roojs.com>
Tue, 27 Feb 2024 02:25:59 +0000 (10:25 +0800)
Roo/htmleditor/FilterEmpty.js

index 8ef141b..2d061df 100644 (file)
@@ -20,8 +20,6 @@ Roo.extend(Roo.htmleditor.FilterEmpty, Roo.htmleditor.FilterBlack,
  
     replaceTag : function(node)
     {
-        Roo.log(node.tagName + ' : ' + node.childNodes.length);
-        Roo.log(node.innerHTML);
         // start from child
         if(node.hasChildNodes()) {
             this.walk(node);
@@ -38,8 +36,6 @@ Roo.extend(Roo.htmleditor.FilterEmpty, Roo.htmleditor.FilterBlack,
             return false; // don't walk
         }
 
-        Roo.log(node.tagName + ' : REMOVED');
-
         Roo.htmleditor.FilterBlack.prototype.replaceTag.call(this, node);
         return false; // don't walk