From 5ee0a5759862c469709113624ab255994d106f4a Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 8 Aug 2014 00:27:31 +0200 Subject: [PATCH] trigger lazy loading earlier, fix #9823 --- apps/files/js/filelist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 4fa8ca65e39..532ed466968 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -400,7 +400,7 @@ * This appends/renders the next page of entries when reaching the bottom. */ _onScroll: function(e) { - if (this.$container.scrollTop() + this.$container.height() > this.$el.height() - 100) { + if (this.$container.scrollTop() + this.$container.height() > this.$el.height() - 300) { this._nextPage(true); } }, -- 2.39.5