Lines Matching refs:children
272 * Recursively append comments to the main comment list and children
279 appendComments(this.children, div.find('ul.comment-children'));
280 // To avoid stagnating data, don't store the comments children in data.
281 this.children = null;
293 // To avoid stagnating data, don't store the comments children in data.
294 comment.children = null;
303 // Determine where in the parents children list to insert this comment.
343 // Moderator mode: remove the comment and all children immediately
493 // Add the reply li to the children ul.
533 this.children = sortComments(this.children);
539 * Get the children comments from a ul. If recursive is true,
540 * recursively include childrens' children.
543 var children = [];
544 ul.children().children("[id^='cd']")
548 comment.children = getChildren($(this).find('#cl' + comment.id), true);
549 children.push(comment);
551 return children;
764 <ul class="comment-children" id="cl<%id%>"></ul>\