i am using Polymer-1.0 paper-scroll-header-panel & looking auto-loading of content when user reach bottom (like facebook's infinite scrolling), the code given below working perfectly
listeners: {
"content-scroll": "scroll"
},
scroll: function(e, d){
console.log(e, d);
},
but how i know user reach bottom of page & is there any threshold setup available (like 80% from top) ?
in d.target' objectscrollHeight&scrollTop` are available, but i don't know how i use these value for infinite scrolling