Searched refs:cComment (Results 1 – 1 of 1) sorted by relevance
/plugin/diagramsnet/lib/plugins/ |
H A D | cConf-comments.js | 90 function confOldCommentToDrawio(cComment, pCommentId) argument 92 if (cComment.isDeleted) return null; //skip deleted comments 94 var comment = new DrawioComment(null, cComment.id, cComment.content, 95 cComment.modifiedDate, cComment.createdDate, cComment.isResolved, 96 new DrawioUser(cComment.user.id, cComment.user.email, 97 cComment.user.displayName, cComment.user.pictureUrl), pCommentId); 99 for (var i = 0; cComment.replies != null && i < cComment.replies.length; i++) 101 comment.addReplyDirect(confOldCommentToDrawio(cComment.replies[i], cComment.id));
|