comment numbers update uncleanly
This commit is contained in:
parent
76c9877316
commit
7bdf52e173
1 changed files with 4 additions and 1 deletions
|
|
@ -35,9 +35,12 @@
|
|||
}
|
||||
|
||||
function processComment(post_id, html){
|
||||
$('#'+ post_id + ' .comment_set li:last' ).before(
|
||||
post = $('#' + post_id)[0]
|
||||
$(' .comment_set li:last', post ).before(
|
||||
$(html).fadeIn("fast", function(){})
|
||||
);
|
||||
$('.show_post_comments', post).html(
|
||||
$('.show_post_comments', post).html().replace(/\d/,$('.comment_set', post)[0].childElementCount -1));
|
||||
}
|
||||
|
||||
function processPost(className, html){
|
||||
|
|
|
|||
Loading…
Reference in a new issue