Fix thread stats so post count hover works on the OP's id.

This commit is contained in:
Forkless 2014-11-22 19:41:23 -06:00 committed by czaks
parent cf91daee7c
commit 4b782d6163

View File

@ -50,8 +50,11 @@ $(document).ready(function(){
ids[opID] = 0;
}
ids[opID]++;
var cur = op.find('>.intro >.poster_id');
cur.find('+.posts_by_id').remove();
cur.after('<span class="posts_by_id"> ('+ ids[cur.text()] +')</span>');
replies.each(function(){
var cur = $(this).find('> .intro > .poster_id');
cur = $(this).find('>.intro >.poster_id');
cur.find('+.posts_by_id').remove();
cur.after('<span class="posts_by_id"> ('+ ids[cur.text()] +')</span>');
});