some problem about to use 'on-infinite-scroll'
-
can anyone tell me how to load more with ‘on-infinite-scroll’.when scrolling to the bottom of the page
-
@peskoe You just need to add
on-infinite-scroll="handler"
to theons-page
and then definehandler
as a function with adone()
callback, for example:var handler = function(done) { console.log('adding item'); done(); }