copay/public/views/preferencesUnit.html

12 lines
443 B
HTML
Raw Normal View History

2016-06-10 07:19:36 -07:00
<div class="topbar-container" ng-include="'views/includes/topbar.html'"
ng-init="titleSection='Unit'; goBackToState = 'preferencesGlobal'; noColor = true">
2015-05-08 05:35:33 -07:00
</div>
2016-06-10 07:19:36 -07:00
<div class="content preferences" ng-controller="preferencesUnitController">
2015-10-08 07:58:55 -07:00
<h4></h4>
2016-06-10 07:19:36 -07:00
2016-06-10 09:06:52 -07:00
<ion-radio class="line-b size-12 radio-label" ng-repeat="unit in unitList" ng-value="unit.code" ng-model="currentUnit"
2016-06-10 07:19:36 -07:00
ng-click="save(unit)">{{unit.shortName}}
</ion-radio>
2015-03-06 07:00:10 -08:00
</div>