Skip to:
Content

BuddyPress.org

Changeset 2264


Ignore:
Timestamp:
01/06/2010 08:44:03 AM (15 years ago)
Author:
apeatling
Message:

Fixes #1529 - delete multiple replies and then add new reply bug.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/_inc/global.js

    r2256 r2264  
    383383                } else {
    384384                    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' );
    386386
    387387                        /* 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 );
    390390                    });
    391391                }
Note: See TracChangeset for help on using the changeset viewer.