From e0447c4616dc6c939c5bd248e84bb260e39eba88 Mon Sep 17 00:00:00 2001 From: Sriram Hariharan Date: Thu, 10 Jan 2019 21:10:57 -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 7046672d..ed84c421 100644 --- a/js/content.js +++ b/js/content.js @@ -106,7 +106,7 @@ $(function () { }); $(window).scroll(function () { - if ($(document).height() <= $(window).scrollTop() + $(window).height() + 100) { + if ($(document).height() <= $(window).scrollTop() + $(window).height() + 160) { loadNextPages(); } });