Im running my project on chrome right now (1.0.0-beta.11), and when I add the infinitescroll directive to my project it display this error message:
Error: [$compile:ctreq] Controller ‘$ionicScroll’, required by directive ‘ionInfiniteScroll’, can’t be found!
The Pull to refresh work fine,
this is my tab html:
<ion-content>
<ion-refresher
on-refresh="doRefresh()">
</ion-refresher>
<ion-list>
<ion-item collection-repeat="c in items"
collection-item-height="320"
collection-item-width="'100%'"
class="cartao blue">
<p class="seg">{{c.texto}}</p>
</ion-item>
</ion-list>
<ion-infinite-scroll
on-infinite="loadMore()"
distance="10%">
</ion-infinite-scroll>
</ion-content>
Any idea whats going on? Does it have anything to do with the update?