fix word filter on html editor
[roojs1] / roojs-bootstrap-debug.js
index 98a354f..3919fe1 100644 (file)
@@ -26630,7 +26630,6 @@ Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
         var lvl = 0;
         var stack = [ ul ];
         var last_li = false;
-        var base_lvl = 0;
         
         items.forEach(function(n) {
             //Roo.log("got innertHMLT=" + n.innerHTML);
@@ -26664,20 +26663,18 @@ Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
                 return;
             }
             
-            var nlvl = (style['mso-list'].split(' ')[1].replace(/level/,'') *1) - 1;
+            var nlvl = Math.min(
+                            stack.length-1, 
+                            (style['mso-list'].split(' ')[1].replace(/level/,'') *1) - 1
+                        );
             
             
             
             if (nlvl > lvl) {
                 //new indent
-                if (last_li) {
                     var nul = doc.createElement('ul'); // what about number lists...
                     last_li.appendChild(nul);
                     stack[nlvl] = nul;
-                } else {
-                    // occurs when we get a level (1) but no parent - just put all the children on the top most..
-                    stack[nlvl] = stack[stack.length-1]; 
-                }
                 
             }
             lvl = nlvl;