Commit 57f9e98d authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

DocumentContent.Internal_Content_Add добавлен паарметр bCheckTable

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53249 954022d7-b5bf-4e40-9824-e11837661b57
parent f9a11365
......@@ -5823,7 +5823,12 @@ PasteProcessor.prototype =
}
//��������� ����� ���������
for(var i = 0, length = oPasteProcessor.aContent.length; i < length; ++i)
cell.Content.Internal_Content_Add(i + 1, oPasteProcessor.aContent[i]);
{
if(i == length - 1)
cell.Content.Internal_Content_Add(i + 1, oPasteProcessor.aContent[i], true);
else
cell.Content.Internal_Content_Add(i + 1, oPasteProcessor.aContent[i], false);
}
//������� ��������, ������� ��������� � ������� �� ���������
cell.Content.Internal_Content_Remove(0, 1);
},
......@@ -7113,7 +7118,12 @@ PasteProcessor.prototype =
//��������� ����� ���������
for(var i = 0, length = content.Content.length; i < length; ++i)
cell.Content.Internal_Content_Add(i + 1, content.Content[i]);
{
if(i == length - 1)
cell.Content.Internal_Content_Add(i + 1, content.Content[i], true);
else
cell.Content.Internal_Content_Add(i + 1, content.Content[i], false);
}
//������� ��������, ������� ��������� � ������� �� ���������
cell.Content.Internal_Content_Remove(0, 1);
arrShapes2.splice(0, 1);
......
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