Skip to:
Content

BuddyPress.org

Ticket #4844: 4844.patch

File 4844.patch, 1.2 KB (added by merty, 11 years ago)
  • bp-themes/bp-default/_inc/global.js

     
    504504                                                if ( !jq(this).is(':hidden') )
    505505                                                        child_count++;
    506506                                        });
    507                                         comment_li.fadeOut(200);
     507                                        comment_li.fadeOut(200, function() {
     508                                                comment_li.remove();
     509                                        });
    508510
    509511                                        /* Decrease the "Reply (X)" button count */
    510512                                        var count_span = jq('li#' + comment_li.parents('ul#activity-stream > li').attr('id') + ' a.acomment-reply span');
  • bp-templates/bp-legacy/js/buddypress.js

     
    510510                                                if ( !jq(this).is(':hidden') )
    511511                                                        child_count++;
    512512                                        });
    513                                         comment_li.fadeOut(200);
     513                                        comment_li.fadeOut(200, function() {
     514                                                comment_li.remove();
     515                                        });
    514516
    515517                                        /* Decrease the "Reply (X)" button count */
    516518                                        var count_span = jq('#' + comment_li.parents('#activity-stream > li').attr('id') + ' a.acomment-reply span');