Commit fb0407ea 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@65426 954022d7-b5bf-4e40-9824-e11837661b57
parent 48605d7f
...@@ -256,9 +256,9 @@ function CCollaborativeEditing() ...@@ -256,9 +256,9 @@ function CCollaborativeEditing()
this.m_aNewImages = []; this.m_aNewImages = [];
}; };
this.Set_Fast = function() this.Set_Fast = function(bFast)
{ {
this.m_bFast = true; this.m_bFast = bFast;
}; };
this.Is_Fast = function() this.Is_Fast = function()
......
...@@ -14615,7 +14615,7 @@ CDocument.prototype.Get_ElementByIndex = function(Index) ...@@ -14615,7 +14615,7 @@ CDocument.prototype.Get_ElementByIndex = function(Index)
}; };
CDocument.prototype.Set_FastCollaborativeEditing = function(isOn) CDocument.prototype.Set_FastCollaborativeEditing = function(isOn)
{ {
CollaborativeEditing.Set_Fast(true); CollaborativeEditing.Set_Fast(isOn);
editor.SetCollaborativeMarksShowType(c_oAscCollaborativeMarksShowType.All); editor.SetCollaborativeMarksShowType(c_oAscCollaborativeMarksShowType.All);
}; };
CDocument.prototype.Continue_FastCollaborativeEditing = function() CDocument.prototype.Continue_FastCollaborativeEditing = function()
......
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