Open aravindnet opened 8 years ago
Have you tried specifying a container with the infinite-scroll-container
attribute?
yeah. itried but infinite scroll function is keep getting called always
@aravindnet: I am facing too that issue. after lot of googling didn't found any solution then i change my css and it's working for me. i remove the css " height " property and then it's working for me.
cool..... could you paste your code snippet here
On Thu, Mar 3, 2016 at 7:24 AM, Umair Ahmed notifications@github.com wrote:
@aravindnet https://github.com/aravindnet: I am facing too that issue. after lot of googling didn't found any solution then i change my css and it's working for me. i remove the css " height " property and then it's working for me.
— Reply to this email directly or view it on GitHub https://github.com/sroze/ngInfiniteScroll/issues/246#issuecomment-191760354 .
yes sure.
Html
<div class="container-fluid your-class" infinite-scroll='yourFunction()' infinite-scroll-disabled='busy'>
css before when i am facing issue.
.your-class{ background: #E6E7E8; height: 100vh; //vh = view height }
css after.
.your-class{ background: #E6E7E8; //height: 100vh; //vh = view height }
work for me.
Thanks for sharing it
On Sat, Mar 5, 2016 at 1:05 AM, Umair Ahmed notifications@github.com wrote:
yes sure.
Html <div class="container-fluid your-class" infinite-scroll='yourFunction()' infinite-scroll-disabled='busy'>
css before when i am facing issue. .your-class{ background: #E6E7E8; height: 100vh; //vh = view height }
css after. .your-class{ background: #E6E7E8; //height: 100vh; //vh = view height }
— Reply to this email directly or view it on GitHub https://github.com/sroze/ngInfiniteScroll/issues/246#issuecomment-192600500 .
can it work's for you ?
we taken other plugin to implement infinite scroll in our app. i am not working on this now
On Mon, Mar 7, 2016 at 3:34 AM, Umair Ahmed notifications@github.com wrote:
can it work's for you ?
— Reply to this email directly or view it on GitHub https://github.com/sroze/ngInfiniteScroll/issues/246#issuecomment-193180225 .
okie. can you try it in a demo app ? if not so please try it.
@aravindnet can you tell me which plugin you are currently working
i am trrying to use this directive for particular div in ap age instead of window then its not working