sroze / ngInfiniteScroll

Infinite Scrolling for AngularJS
http://sroze.github.com/ngInfiniteScroll/
MIT License
2.89k stars 723 forks source link

Suggestion for addition to documentation #256

Open jacobscarter opened 8 years ago

jacobscarter commented 8 years ago

I would suggest adding to the documentation that the infinite-scroll directive must be a child of the DIV that is being watched for scroll.

e.g.

WONT WORK

<div infinite-scroll="getList()" infinite-scroll-container="'.watcher'">
  <div class="watcher"></div>
</div>

WILL WORK

<div class="watcher">
  <div infinite-scroll="getList()" infinite-scroll-container="'.watcher'"></div>
</div>
smartcris commented 8 years ago

+1