diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-08-08 00:27:31 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-08-08 00:27:31 +0200 |
commit | 5ee0a5759862c469709113624ab255994d106f4a (patch) | |
tree | a7ce75e832af08ea5d77b702a303dd339850d094 /apps/files/js | |
parent | 5e7b164560e3b06634f8c21df19d0f4f83dc5790 (diff) | |
download | nextcloud-server-5ee0a5759862c469709113624ab255994d106f4a.tar.gz nextcloud-server-5ee0a5759862c469709113624ab255994d106f4a.zip |
trigger lazy loading earlier, fix #9823
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
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); } }, |