Commit f3ba8db6 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправления для сохранения с помощью совместного редактирования.


git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56546 954022d7-b5bf-4e40-9824-e11837661b57
parent c99df26f
...@@ -849,7 +849,8 @@ function CCollaborativeEditing() ...@@ -849,7 +849,8 @@ function CCollaborativeEditing()
// Просчитаем сколько изменений на сервер пересылать не надо // Просчитаем сколько изменений на сервер пересылать не надо
var SumIndex = 0; var SumIndex = 0;
for ( var PointIndex = 0; PointIndex < StartPoint; PointIndex++ ) var StartPoint2 = Math.min( StartPoint, LastPoint );
for ( var PointIndex = 0; PointIndex < StartPoint2; PointIndex++ )
{ {
var Point = History.Points[PointIndex]; var Point = History.Points[PointIndex];
SumIndex += Point.Items.length; SumIndex += Point.Items.length;
......
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