trigger lazy loading earlier, fix #9823

This commit is contained in:
Jan-Christoph Borchardt 2014-08-08 00:27:31 +02:00
parent 5e7b164560
commit 5ee0a57598
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
},