From 99ecac6f5df7f9078a39efa4b78f2c1028dc1389 Mon Sep 17 00:00:00 2001 From: 10001shh Date: Thu, 10 Jan 2019 21:15:01 -0600 Subject: [PATCH] tweaking scroll --- js/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/content.js b/js/content.js index ed84c421..46a518b9 100644 --- a/js/content.js +++ b/js/content.js @@ -106,7 +106,7 @@ $(function () { }); $(window).scroll(function () { - if ($(document).height() <= $(window).scrollTop() + $(window).height() + 160) { + if ($(document).height() <= $(window).scrollTop() + $(window).height() + 130) { loadNextPages(); } });