Commit eadc8802 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix bug 35663

parent bccebf1b
......@@ -809,8 +809,13 @@ if(typeof CPresentation !== "undefined")
var cur_slide = this.Slides[this.CurPage];
var slide_id = cur_slide.deleteLock.Get_Id();
var slide_id;
if(this.FocusOnNotes && cur_slide.notes){
slide_id = cur_slide.notes.Get_Id();
}
else{
slide_id = cur_slide.deleteLock.Get_Id();
}
AscCommon.CollaborativeEditing.OnStart_CheckLock();
......
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