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

index 721b40e..41f3816 100644 (file)
@@ -26,7 +26,13 @@ Roo.extend(Roo.htmleditor.FilterEmpty, Roo.htmleditor.FilterBlack,
         }
 
         //
-        if(['B', 'I', 'U', 'S'].indexOf(node.tagName) < 0) {
+        if(
+            ['B', 'I', 'U', 'S'].indexOf(node.tagName) < 0
+            ||
+            node.attributes && node.attributes.length > 0
+            ||
+            node.hasChildNodes()
+        ) {
             return false; // dont walk
         }
         if (node.attributes && node.attributes.length > 0 || node.childNodes.length > 0) {