Commit ce0508b0 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

проверки добавления в историю

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53003 954022d7-b5bf-4e40-9824-e11837661b57
parent 427dfca0
......@@ -3510,7 +3510,9 @@ Paragraph.prototype =
// 2. Удаляем все рассчитанные переносы строк, внутренние переносы, переносы страниц
// 3. Объединяем подряд идущие TextPr
History.TurnOff();
var is_on = History.Is_On();
if(is_on)
History.TurnOff();
if ( 0 === CurPage )
{
if ( para_Numbering != this.Content[0].Type )
......@@ -3528,7 +3530,8 @@ Paragraph.prototype =
}
}
}
History.TurnOn();
if(is_on)
History.TurnOn();
// Пересчет параграфа:
// 1. Сначала рассчитаем новые переносы строк, при этом подсчитав количество
......
......@@ -2405,7 +2405,9 @@ PasteProcessor.prototype =
oThis.aContent = new Array();
//�� ����� ���������� �������� ��� ������� ��������� �������
var arrShapes = [], arrImages = [], arrTables = [];
History.TurnOff();
var is_on = History.Is_On();
if(is_on)
History.TurnOff();
// g_oTableId.m_bTurnOff = true;
var shape = new CShape(null);
shape.drawingObjects = content.Parent.shape.drawingObjects;
......@@ -2422,7 +2424,8 @@ PasteProcessor.prototype =
shape.txBody.content.Internal_Content_Remove(0, 1);
}
}
History.TurnOn();
if(is_on)
History.TurnOn();
var api = asc["editor"];
var arrFonts = [];
for(var key in oThis.fontMap)
......
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