diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-08-08 10:02:43 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-08 10:02:43 +0200 |
commit | fa260b1649e200a0e6a4d3d921bcf22c414d4824 (patch) | |
tree | 05d3d6252c35096b7e65eacded87e089583dfa10 /apps | |
parent | d63b9e68c464da6c2955c82334bf4d45afb61cae (diff) | |
parent | 5ee0a5759862c469709113624ab255994d106f4a (diff) | |
download | nextcloud-server-fa260b1649e200a0e6a4d3d921bcf22c414d4824.tar.gz nextcloud-server-fa260b1649e200a0e6a4d3d921bcf22c414d4824.zip |
Merge pull request #10280 from owncloud/lazyloading-earlier
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); } }, |