Browse Source

Update auto-reload.js

check if viewing a thread or viewing a board page when updating a thread so new posts do not appear at bottom of page while viewing threads list not sure if this was because of an outdated template but I thought I should point out this as it may affect html templates no matter the code as the banner code is the only code that checks where the user currently is.
pull/40/head
undido 11 years ago
parent
commit
41ee55a1b2
  1. 3
      js/auto-reload.js

3
js/auto-reload.js

@ -16,6 +16,9 @@
$(document).ready(function(){
if($('div.banner').length == 0)
return; // not index
if($(".post.op").size() != 1)
return; //not thread page
var poll_interval;

Loading…
Cancel
Save