From a68efaec3b422bedf1b828994adcd3d60e5c6911 Mon Sep 17 00:00:00 2001 From: Benjamin Southall Date: Thu, 4 May 2017 13:59:52 +0900 Subject: [PATCH] On post submission manually update / reload the page for auto-reload.js. --- js/auto-reload.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/js/auto-reload.js b/js/auto-reload.js index 299ca166..b517feb0 100644 --- a/js/auto-reload.js +++ b/js/auto-reload.js @@ -43,6 +43,14 @@ var notify = false; auto_reload_enabled = true; // for watch.js to interop $(document).ready(function(){ + if($('div.banner').length == 0) + { + return; // not index + } + if($(".post.op").size() != 1) + { + return; //not thread page + } // Adds Options panel item if (typeof localStorage.auto_thread_update === 'undefined') { @@ -302,6 +310,11 @@ $(document).ready(function(){ return false; }; + + $(post).on('submit', function(e){ + poll(manualUpdate = true); + dothis(this); + }); $(window).scrollStopped(function() { // if the newest post is not visible