copay/www/views/preferencesColor.html

16 lines
439 B
HTML

<ion-view>
<ion-nav-bar class="bar-royal">
<ion-nav-title>
{{'Color'|translate}}
</ion-nav-title>
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
<ion-content>
<ion-radio ng-repeat="c in colorList" ng-value="c" ng-model="currentColor" ng-click="save(c.color)">
<span ng-style="{'color': c.color}">&block;</span>
<span> {{c.name}}</span>
</ion-radio>
</ion-content>
</ion-view>