summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-08-08 10:02:43 +0200
committerMorris Jobke <hey@morrisjobke.de>2014-08-08 10:02:43 +0200
commitfa260b1649e200a0e6a4d3d921bcf22c414d4824 (patch)
tree05d3d6252c35096b7e65eacded87e089583dfa10 /apps
parentd63b9e68c464da6c2955c82334bf4d45afb61cae (diff)
parent5ee0a5759862c469709113624ab255994d106f4a (diff)
downloadnextcloud-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.js2
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);
}
},