Commit 9bd30ba6 authored by Ilya Kirillov's avatar Ilya Kirillov

Now builder generate a correct document after every command.

parent 0f52b44e
...@@ -1084,7 +1084,7 @@ ...@@ -1084,7 +1084,7 @@
{ {
if (oElement instanceof ApiParagraph || oElement instanceof ApiTable) if (oElement instanceof ApiParagraph || oElement instanceof ApiTable)
{ {
this.Document.Internal_Content_Add(nPos, oElement.private_GetImpl(), false); this.Document.Internal_Content_Add(nPos, oElement.private_GetImpl());
} }
}; };
/** /**
...@@ -1095,7 +1095,7 @@ ...@@ -1095,7 +1095,7 @@
{ {
if (oElement instanceof ApiParagraph || oElement instanceof ApiTable) if (oElement instanceof ApiParagraph || oElement instanceof ApiTable)
{ {
this.Document.Internal_Content_Add(this.Document.Content.length, oElement.private_GetImpl(), false); this.Document.Internal_Content_Add(this.Document.Content.length, oElement.private_GetImpl());
return true; return true;
} }
...@@ -1106,7 +1106,7 @@ ...@@ -1106,7 +1106,7 @@
*/ */
ApiDocumentContent.prototype.RemoveAllElements = function() ApiDocumentContent.prototype.RemoveAllElements = function()
{ {
this.Document.Internal_Content_Remove(0, this.Document.Content.length, false); this.Document.Internal_Content_Remove(0, this.Document.Content.length);
}; };
/** /**
* Remove element by specified position. * Remove element by specified position.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment