onAddComment

onAddComment

Функция, вызываемая при добавлении комментария к документу с помощью метода AddComment.

Параметры:
Пример:

window.Asc.plugin.event_onAddComment = function(comment)
{
    Comments.push(comment);
    $('#scrollable-container-id').append(makeComment(comment.Id, comment));
};