summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}
},