Roo/htmleditor/FilterEmpty.js
authorleon <leon@roojs.com>
Mon, 26 Feb 2024 08:54:37 +0000 (16:54 +0800)
committerleon <leon@roojs.com>
Mon, 26 Feb 2024 08:54:37 +0000 (16:54 +0800)
Roo/htmleditor/FilterEmpty.js

index 8da55d2..33075b1 100644 (file)
@@ -24,7 +24,7 @@ Roo.extend(Roo.htmleditor.FilterEmpty, Roo.htmleditor.FilterBlack,
         for (var i = 0; i < ar.length; i++) {
             this.walk(ar[i]);
         }
-        if(!in_array(node.tagName, ['B', 'I', 'U', 'S'])) {
+        if(!['B', 'I', 'U', 'S'].includes(node.tagName)) {
             return false;
         }