Files
ionic-framework/demos/directive/refresher/refreshList/index.html
Andrew Joslin 1254fcde01 chore(): e2e tests from demos, reorganize gulpfile
Conflicts:
	config/protractor.conf.js
	gulpfile.js
2014-05-28 11:48:40 -06:00

22 lines
495 B
HTML

---
name: refreshList
component: ionRefresher
---
<ion-header-bar class="bar-positive">
<h1 class="title">Pull to Refresh</h1>
</ion-header-bar>
<ion-content ng-controller="RefresherCtrl">
<ion-refresher on-refresh="doRefresh()"
pulling-text="Pull..."
refreshing-text="Refreshing!"
refreshing-icon="ion-loading-c">
</ion-refresher>
<ion-list>
<ion-item ng-repeat="item in items">{{item}}</ion-item>
</ion-list>
</ion-content>