Searched refs:gComment (Results 1 – 1 of 1) sorted by relevance
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | DriveFile.js | 729 function driveCommentToDrawio(file, gComment, pCommentId) argument 731 if (gComment.deleted) return null; //skip deleted comments 733 var comment = new DriveComment(file, gComment.commentId || gComment.replyId, gComment.content, 734 gComment.modifiedDate, gComment.createdDate, gComment.status == 'resolved', 735 gComment.author.isAuthenticatedUser? currentUser : 736 new DrawioUser(gComment.author.permissionId, gComment.author.emailAddress, 737 gComment.author.displayName, gComment.author.picture.url), pCommentId); 739 for (var i = 0; gComment.replies != null && i < gComment.replies.length; i++) 741 comment.addReplyDirect(driveCommentToDrawio(file, gComment.replies[i], gComment.commentId));
|