Ticket #4844: 4844.patch
File 4844.patch, 1.2 KB (added by , 11 years ago) |
---|
-
bp-themes/bp-default/_inc/global.js
504 504 if ( !jq(this).is(':hidden') ) 505 505 child_count++; 506 506 }); 507 comment_li.fadeOut(200); 507 comment_li.fadeOut(200, function() { 508 comment_li.remove(); 509 }); 508 510 509 511 /* Decrease the "Reply (X)" button count */ 510 512 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
510 510 if ( !jq(this).is(':hidden') ) 511 511 child_count++; 512 512 }); 513 comment_li.fadeOut(200); 513 comment_li.fadeOut(200, function() { 514 comment_li.remove(); 515 }); 514 516 515 517 /* Decrease the "Reply (X)" button count */ 516 518 var count_span = jq('#' + comment_li.parents('#activity-stream > li').attr('id') + ' a.acomment-reply span');