Browse Source

Bugfix: When you hovered over a >>X link, then hid and unhid a thread (js/hide-threads.js) it would fuck up

pull/40/head
Michael Foster 11 years ago
parent
commit
c0815ea25a
  1. 2
      js/post-hover.js

2
js/post-hover.js

@ -73,7 +73,7 @@ onready(function(){
$(document).trigger('new_post', this);
if($('#' + $(this).attr('id')).length == 0)
$('div.post:first').prepend($(this).css('display', 'none').addClass('hidden'));
$('body').prepend($(this).css('display', 'none').addClass('hidden'));
});
$post = $('div.post#reply_' + id);

Loading…
Cancel
Save