Commit 6441fac6 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Добавлена функция Set_ReviewTypeWithInfo для гиперссылок и полей.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66367 954022d7-b5bf-4e40-9824-e11837661b57
parent 71492ce8
......@@ -2359,6 +2359,15 @@ CParagraphContentWithParagraphLikeContent.prototype.Set_ReviewType = function(Re
Element.Set_ReviewType(ReviewType);
}
};
CParagraphContentWithParagraphLikeContent.prototype.Set_ReviewTypeWithInfo = function(ReviewType, ReviewInfo)
{
for (var Index = 0, Count = this.Content.length; Index < Count; Index++)
{
var Element = this.Content[Index];
if (Element && Element.Set_ReviewTypeWithInfo)
Element.Set_ReviewTypeWithInfo(ReviewType, ReviewInfo);
}
};
CParagraphContentWithParagraphLikeContent.prototype.Check_RevisionsChanges = function(Checker, ContentPos, Depth)
{
for (var CurPos = 0, Count = this.Content.length; CurPos < Count; CurPos++)
......
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