Browse Source

Fix auto reload bug when inlining replies

main
Equus2 5 years ago
committed by discomrade
parent
commit
14972d15e7
  1. 2
      js/auto-reload.js

2
js/auto-reload.js

@ -155,7 +155,7 @@ $(document).ready(function(){
if (!new_posts) {
first_new_post = this;
}
$(this).insertAfter($('div.post:last').next()).after('<br class="clear">');
$(this).insertAfter($('div.post:not(.post-hover,.inline):last').next()).after('<br class="clear">');
new_posts++;
loaded_posts++;
$(document).trigger('new_post', this);

Loading…
Cancel
Save