Commit 21917ed1 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50041 954022d7-b5bf-4e40-9824-e11837661b57
parent 210ca6f3
......@@ -3597,6 +3597,20 @@ asc_docs_api.prototype.OpenDocumentEndCallback = function()
this.bInit_word_control = true;
this.asc_fireCallback("asc_onDocumentContentReady");
var _slides = this.WordControl.m_oLogicDocument.Slides;
var _slidesCount = _slides.length;
for (var i = 0; i < _slidesCount; i++)
{
var _comments = _slides[i].comments;
var _commentsCount = _comments.length;
for (var j = 0; j < _commentsCount; j++)
{
this.sync_AddComment(_comments[j].Get_Id(), _comments[j].Data );
}
}
this.WordControl.InitControl();
if (bIsScroll)
......
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