copay/public/views/preferencesColor.html

12 lines
419 B
HTML
Raw Normal View History

2016-06-09 13:54:03 -07:00
<div class="topbar-container" ng-include="'views/includes/topbar.html'"
2015-05-07 14:35:54 -07:00
ng-init="titleSection='Color'; goBackToState = 'preferences'">
</div>
2016-06-10 05:41:13 -07:00
<div class="content preferences" ng-controller="preferencesColorController">
2015-10-08 07:58:55 -07:00
<h4></h4>
2016-06-09 13:54:03 -07:00
2016-06-10 05:41:13 -07:00
<ion-radio class="size-12" ng-repeat="c in colorList" ng-value="c" ng-model="currentColor" ng-click="save(c)">
2015-04-11 13:12:44 -07:00
<span ng-style="{'color': c}">&block;</span>
2016-06-09 13:54:03 -07:00
</ion-radio>
2015-03-06 07:00:10 -08:00
</div>