Browse Source

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

pull/18/head
Forkless czaks 9 years ago
parent
commit
4b782d6163
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      js/thread-stats.js

+ 5
- 2
js/thread-stats.js View File

@@ -50,9 +50,12 @@ $(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.find('+ .posts_by_id').remove();
cur = $(this).find('>.intro >.poster_id');
cur.find('+.posts_by_id').remove();
cur.after('<span class="posts_by_id"> ('+ ids[cur.text()] +')</span>');
});
var size = function(obj) {


Loading…
Cancel
Save