Commit 951a9cd3 authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 34322, Bug 34374

parent 3fba3d08
......@@ -802,7 +802,11 @@ CPresentation.prototype =
},
Continue_FastCollaborativeEditing: function()
{
if (true !== AscCommon.CollaborativeEditing.Is_Fast() || true === this.CollaborativeEditing.Is_SingleUser())
if (true === AscCommon.CollaborativeEditing.Get_GlobalLock())
return;
if (this.Api.isLongAction())
return;
if (true !== AscCommon.CollaborativeEditing.Is_Fast() || true === AscCommon.CollaborativeEditing.Is_SingleUser())
return;
if(this.Slides[this.CurPage]){
......
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