Commit 495928e9 authored by konovalovsergey's avatar konovalovsergey

unLockDocument when co-editing begins, but the document is not fully opened

parent be0c1957
......@@ -1193,7 +1193,7 @@ var editor;
// Когда документ еще не загружен, нужно отпустить lock (при быстром открытии 2-мя пользователями)
if (!t.IsSendDocumentLoadCompleate) {
t.startCollaborationEditing();
t.CoAuthoringApi.unLockDocument(false);
t.CoAuthoringApi.unLockDocument(false, true);
} else {
// Сохранять теперь должны на таймере автосохранения. Иначе могли два раза запустить сохранение, не дожидаясь окончания
t.canUnlockDocument = true;
......
......@@ -974,7 +974,7 @@
t.isStartCoAuthoringOnEndLoad = true;
if (!isStartEvent) {
// Документ еще не подгрузился, но нужно сбросить lock
t.CoAuthoringApi.unLockDocument(false);
t.CoAuthoringApi.unLockDocument(false, true);
}
}
};
......
......@@ -1197,7 +1197,7 @@ background-repeat: no-repeat;\
t.isStartCoAuthoringOnEndLoad = true;
if (!isStartEvent) {
// Документ еще не подгрузился, но нужно сбросить lock
t.CoAuthoringApi.unLockDocument(false);
t.CoAuthoringApi.unLockDocument(false, true);
}
}
};
......
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