Roo/htmleditor/TidyWriter.js
authorAlan <alan@roojs.com>
Fri, 7 Jan 2022 06:46:21 +0000 (14:46 +0800)
committerAlan <alan@roojs.com>
Fri, 7 Jan 2022 06:46:21 +0000 (14:46 +0800)
Roo/htmleditor/TidyWriter.js

index 4105267..d09f094 100644 (file)
@@ -171,9 +171,12 @@ Roo.htmleditor.TidyWriter.prototype = {
             this.html[this.html.length] =  text;
             return;   
         }
-        // see if last line is a line break
+        // see if last element was a inline element.
         var indentstr = this.indentstr;
-        if (node.previousSibling && node.previousSibling.nodeType == 1 && Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1) {
+        if (node.previousSibling &&
+            node.previousSibling.nodeType == 1 &&
+            Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1)
+        {
             indentstr = '';
         } else {
             this.addLine();