From 7d5899d3a7ba6ab10ad75c6710cdfd661ed59383 Mon Sep 17 00:00:00 2001 From: ScriptKi77y Date: Tue, 30 Sep 2014 01:58:23 -0500 Subject: [PATCH] Quick fix to remove lag.. Executing a function to make a get request while simultaneously triggering a scroll event within the executed scroll event is probably not the best idea. This still needs work, there should probably be something else used to check for updates, such as an event where page has focus or something else that doesn't get called so many times, preferably something that reduces the timer instead. This is just a quick fix to stop all the lag on threads when scrolling near the bottom. --- js/auto-reload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/auto-reload.js b/js/auto-reload.js index 8a4ab949..8a35335e 100644 --- a/js/auto-reload.js +++ b/js/auto-reload.js @@ -202,7 +202,7 @@ $(document).ready(function(){ } end_of_page = true; } - }).trigger('scroll'); + }); $('#update_thread').on('click', function() { poll(manualUpdate = true); return false; });