mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00

updated docs to reflect new name and renamed an internal function BREAKING CHANGE: starting event no longer exists, must use start References #5207
19 lines
466 B
HTML
19 lines
466 B
HTML
<ion-toolbar><ion-title>Pull To Refresh</ion-title></ion-toolbar>
|
|
|
|
<ion-content>
|
|
<ion-refresher
|
|
(start)="doStart($event)"
|
|
(refresh)="doRefresh($event)"
|
|
(pulling)="doPulling($event)"
|
|
pullingIcon="heart"
|
|
pullingText="release to refresh..."
|
|
refreshingIcon="star"
|
|
refreshingText="refreshing...">
|
|
</ion-refresher>
|
|
<ion-list>
|
|
<ion-item *ngFor="#item of items">
|
|
Item {{ item.index }}
|
|
</ion-item>
|
|
</ion-list>
|
|
</ion-content>
|