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:
parent
31a21a5957
commit
41ee55a1b2
@ -17,6 +17,9 @@ $(document).ready(function(){
|
|||||||
if($('div.banner').length == 0)
|
if($('div.banner').length == 0)
|
||||||
return; // not index
|
return; // not index
|
||||||
|
|
||||||
|
if($(".post.op").size() != 1)
|
||||||
|
return; //not thread page
|
||||||
|
|
||||||
var poll_interval;
|
var poll_interval;
|
||||||
|
|
||||||
var poll = function() {
|
var poll = function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user