Merge pull request #10280 from owncloud/lazyloading-earlier

trigger lazy loading earlier, fix #9823
remotes/origin/fix-10825
Morris Jobke 11 years ago
commit fa260b1649
  1. 2
      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);
}
},

Loading…
Cancel
Save