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-14 00:54:04 +0200 |
commit | 4593d9f81986d0e9fc9c83144a1b6d1f872a4531 (patch) | |
tree | 5f355bc2bfdb9dc3312fa0b96033f098e3565457 /apps | |
parent | 0711ab5de7c5d46e936f91b9761ee5a938efb539 (diff) | |
download | nextcloud-server-4593d9f81986d0e9fc9c83144a1b6d1f872a4531.tar.gz nextcloud-server-4593d9f81986d0e9fc9c83144a1b6d1f872a4531.zip |
trigger lazy loading earlier, fix #9823
Diffstat (limited to 'apps')
-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); } }, |