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

index 67867e6..721b40e 100644 (file)
@@ -25,9 +25,9 @@ Roo.extend(Roo.htmleditor.FilterEmpty, Roo.htmleditor.FilterBlack,
             node.walk();
         }
 
-        // only for certain tags
+        //
         if(['B', 'I', 'U', 'S'].indexOf(node.tagName) < 0) {
-            return;
+            return false; // dont walk
         }
         if (node.attributes && node.attributes.length > 0 || node.childNodes.length > 0) {
             return true;