Merge pull request #4345 from JDonadio/bug/select-currency
Fix currency selection
This commit is contained in:
commit
c5eb9a60fd
2 changed files with 19 additions and 44 deletions
|
|
@ -1,20 +1,12 @@
|
|||
<div
|
||||
class="topbar-container"
|
||||
ng-include="'views/includes/topbar.html'"
|
||||
<div class="topbar-container" ng-include="'views/includes/topbar.html'"
|
||||
ng-init="titleSection='Alternative Currency'; goBackToState = 'preferencesGlobal'; noColor = true">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="content preferences" ng-controller="preferencesAltCurrencyController as prefAltCurrency">
|
||||
|
||||
<div class="content preferences" ng-controller="preferencesAltCurrencyController">
|
||||
<h4></h4>
|
||||
<ul class="no-bullet m0 ">
|
||||
<li ng-repeat="altCurrency in prefAltCurrency.alternativeOpts" ng-click="prefAltCurrency.save(altCurrency)">
|
||||
<span>{{altCurrency.name}}</span>
|
||||
<i class="fi-check size-16 right" ng-show="altCurrency.name == prefAltCurrency.selectedAlternative.name"></i>
|
||||
</li>
|
||||
<ul>
|
||||
</div>
|
||||
<div class="extra-margin-bottom"></div>
|
||||
|
||||
<ion-radio class="line-b size-12" ng-repeat="altCurrency in altCurrencyList" ng-value="altCurrency" ng-model="currentCurrency"
|
||||
ng-click="save(altCurrency)">{{altCurrency.name}}
|
||||
</ion-radio>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue