copay/public/views/preferencesUnit.html

17 lines
542 B
HTML
Raw Normal View History

2015-05-08 05:35:33 -07:00
<div
class="topbar-container"
ng-include="'views/includes/topbar.html'"
ng-init="titleSection='Unit'; goBackToState = 'preferences'; noColor = true">
</div>
2015-04-23 22:17:54 -07:00
<div class="content preferences" ng-controller="preferencesUnitController as prefUnit">
2015-03-06 07:00:10 -08:00
<div ng-repeat="unit in prefUnit.unitOpts" ng-click="prefUnit.save(unit)" class="line-b p20 size-14">
<span>{{unit.shortName}}</span>
<i class="fi-check size-16 right" ng-show="prefUnit.unitName == unit.shortName"></i>
</div>
</div>
<div class="extra-margin-bottom"></div>