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.
This commit is contained in:
undido 2013-03-20 00:56:59 -03:00
parent 31a21a5957
commit 41ee55a1b2

View File

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