mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
18 lines
399 B
HTML
18 lines
399 B
HTML
---
|
|
name: forever
|
|
component: ionInfiniteScroll
|
|
---
|
|
<ion-header-bar>
|
|
<h1 class="title">Scroll Down to Load More</h1>
|
|
</ion-header-bar>
|
|
<ion-content ng-controller="ForeverCtrl">
|
|
<div class="list">
|
|
<div class="item" ng-repeat="item in items">
|
|
{{item}}
|
|
</div>
|
|
</div>
|
|
|
|
<ion-infinite-scroll on-infinite="loadMoreItems()" icon="ion-loading-c">
|
|
</ion-infinite-scroll>
|
|
</ion-content>
|