copay/public/views/preferencesAltCurrency.html

13 lines
496 B
HTML
Raw Normal View History

2016-06-10 05:27:14 -07:00
<div class="topbar-container" ng-include="'views/includes/topbar.html'"
ng-init="titleSection='Alternative Currency'; goBackToState = 'preferencesGlobal'; noColor = true">
2015-05-07 14:35:54 -07:00
</div>
2016-06-10 05:27:14 -07:00
<div class="content preferences" ng-controller="preferencesAltCurrencyController">
2015-10-08 07:58:55 -07:00
<h4></h4>
2016-06-10 05:27:14 -07:00
2016-06-10 09:06:52 -07:00
<ion-radio class="line-b size-12 radio-label" ng-repeat="altCurrency in altCurrencyList" ng-value="altCurrency" ng-model="currentCurrency"
2016-06-10 05:27:14 -07:00
ng-click="save(altCurrency)">{{altCurrency.name}}
</ion-radio>
2015-03-06 07:00:10 -08:00
</div>