Changeset 2264
- Timestamp:
- 01/06/2010 08:44:03 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/_inc/global.js
r2256 r2264 383 383 } else { 384 384 comment_li.fadeOut( 200, function() { 385 var children _html = j( 'li#' + comment_li.attr('id') + ' ul:first' ).html();385 var children = j( 'li#' + comment_li.attr('id') + ' ul:first' ); 386 386 387 387 /* Fade in sub comments if any were found. */ 388 if ( children _html.length )389 comment_li.parent().append( children _html).hide().fadeIn( 200 );388 if ( children.length ) 389 comment_li.parent().append( children.html() ).hide().fadeIn( 200 ); 390 390 }); 391 391 }
Note: See TracChangeset
for help on using the changeset viewer.