| | 1210 | else { |
| | 1211 | var comment_child_parent = jq(this).children('ul').children('li'); |
| | 1212 | var comment_child_lis = jq(this).find('li'); |
| | 1213 | |
| | 1214 | if ( comment_child_lis.length != 0 ) { |
| | 1215 | comment_child_parent.each( function(i) { |
| | 1216 | |
| | 1217 | jq(this).addClass('hidden'); |
| | 1218 | jq(this).toggle(); |
| | 1219 | |
| | 1220 | if ( !i ) |
| | 1221 | jq(this).before( '<li class="show-all"><a href="#' + comment_child_parent.attr('id') + '" title="' + bp_terms_show_all_comments + '">' + bp_terms_show_all + ' ' + comment_child_lis.size() + ' ' + bp_terms_comments + '</a></li>' ); |
| | 1222 | }); |
| | 1223 | } |
| | 1224 | } |