Lines Matching refs:ul
187 var ul = $('#cl' + id);
194 ul.html('<li>No comments yet.</li>');
195 ul.data('empty', true);
200 appendComments(comments, ul);
201 ul.data('empty', false);
204 ul.slideDown(speed);
250 var ul = $('#cl' + (node_id || parent_id));
251 if (ul.data('empty')) {
252 $(ul).empty();
253 ul.data('empty', false);
275 function appendComments(comments, ul) {
278 ul.append($(document.createElement('li')).html(div));
279 appendComments(this.children, div.find('ul.comment-children'));
297 var ul = $('#cl' + (comment.node || comment.parent));
298 var siblings = getChildren(ul);
316 ul.append(li.html(div));
416 $('ul.comment-ul').each(function(index, ul) {
417 var comments = getChildren($(ul), true);
419 appendComments(comments, $(ul).empty());
493 // Add the reply li to the children ul.
539 * Get the children comments from a ul. If recursive is true,
542 function getChildren(ul, recursive) {
544 ul.children().children("[id^='cd']")
697 <ul id="cl<%id%>" class="comment-ul"></ul>\
764 <ul class="comment-children" id="cl<%id%>"></ul>\