copay/www/views/preferencesAltCurrency.html

20 lines
582 B
HTML
Raw Normal View History

<ion-view class="settings">
<ion-nav-bar class="bar-royal">
<ion-nav-title>
{{'Alternative Currency'|translate}}
</ion-nav-title>
2016-08-29 12:48:15 -07:00
<ion-nav-back-button>
</ion-nav-back-button>
2016-08-15 13:42:04 -07:00
</ion-nav-bar>
<ion-content>
2016-08-15 13:42:04 -07:00
<ion-radio ng-repeat="altCurrency in altCurrencyList" ng-value="altCurrency.isoCode" ng-model="currentCurrency"
2016-06-10 12:49:35 -07:00
ng-click="save(altCurrency)">{{altCurrency.name}}
</ion-radio>
<ion-infinite-scroll
ng-if="!listComplete"
on-infinite="loadMore()"
distance="1%">
</ion-infinite-scroll>
</ion-content>
2016-08-15 13:42:04 -07:00
</ion-view>