We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e641e16 commit f11090eCopy full SHA for f11090e
examples/blocks/index.js
@@ -13,7 +13,9 @@ let nextHandler = function(pageIndex) {
13
block.innerHTML = i + 1;
14
}
15
16
- return this.append(Array.from(frag.childNodes));
+ return this.append(Array.from(frag.childNodes))
17
+ // indicate that there is a next page to load
18
+ .then(() => true);
19
};
20
21
window.ias = new InfiniteAjaxScroll('.blocks', {
0 commit comments