Commit d9c140ca authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov
parent 08e3c881
...@@ -2717,12 +2717,6 @@ PasteProcessor.prototype = ...@@ -2717,12 +2717,6 @@ PasteProcessor.prototype =
{ {
var oDocument = this.oDocument; var oDocument = this.oDocument;
if(false == this.bNested)
{
//������� ���������
this.oRecalcDocument.Remove(1, true, true, true);
}
var nInsertLength = this.aContent.length; var nInsertLength = this.aContent.length;
if(nInsertLength > 0) if(nInsertLength > 0)
{ {
...@@ -2925,8 +2919,10 @@ PasteProcessor.prototype = ...@@ -2925,8 +2919,10 @@ PasteProcessor.prototype =
nodeDisplay = node; nodeDisplay = node;
if(g_bIsDocumentCopyPaste) if(g_bIsDocumentCopyPaste)
{ {
var oThis = this; var oThis = this;
//удаляем в начале, иначе может получиться что будем вставлять в элементы, которое потом удалим.
//todo с удалением в начале есть проблема, что удаляем элементы даже при пустом буфере
this.oLogicDocument.Remove(1, true, true, true);
this.oDocument = this._GetTargetDocument(this.oDocument); this.oDocument = this._GetTargetDocument(this.oDocument);
// var oPasteContent = this.ReadFromBinary(node.innerText); // var oPasteContent = this.ReadFromBinary(node.innerText);
// this.aContent = oPasteContent.content; // this.aContent = oPasteContent.content;
......
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