Open jacobscarter opened 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.
infinite-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>
+1
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
WILL WORK