2017-06-28 16:28:17 -03:00
< ion-view class = "settings" show-tabs >
2016-09-01 12:36:59 -04:00
< ion-nav-bar class = "bar-royal" >
2016-09-22 11:55:23 -03:00
< ion-nav-title >
{{'Alternative Currency'|translate}}
< / ion-nav-title >
2016-08-29 16:48:15 -03:00
< ion-nav-back-button >
< / ion-nav-back-button >
2016-08-15 17:42:04 -03:00
< / ion-nav-bar >
2016-09-22 11:55:23 -03:00
< ion-content >
2016-12-13 17:04:46 -03:00
< div class = "bar bar-header item-input-inset m20b" >
2016-12-13 16:48:22 -03:00
< label class = "item-input-wrapper" >
< i class = "icon ion-ios-search placeholder-icon" > < / i >
< input type = "search" ng-init = "searchedAltCurrency = ''" ng-model = "searchedAltCurrency" ng-change = "findCurrency(searchedAltCurrency)"
placeholder="{{'Search your currency' | translate}}">
< / label >
< / div >
2018-05-10 12:23:44 +09:00
< div class = "list" ng-if = "lastUsedPopularList[0] && searchedAltCurrency.length == 0" >
2018-01-30 17:01:06 -04:00
< ion-radio class = "alt-currency-radio" ng-repeat = "lastUsedAltCurrency in lastUsedPopularList" ng-value = "lastUsedAltCurrency.isoCode" ng-model = "currentCurrency"
2017-08-29 16:50:11 -03:00
ng-click="save(lastUsedAltCurrency)">{{lastUsedAltCurrency.name}} < span class = "item-note" > {{lastUsedAltCurrency.isoCode}}< / span >
2016-12-13 16:32:22 -03:00
< / ion-radio >
< / div >
< div class = "list" >
2017-08-29 16:50:11 -03:00
< div class = "item" ng-repeat = "altCurrency in altCurrencyList" ng-value = "altCurrency.isoCode" ng-model = "currentCurrency"
ng-click="save(altCurrency)">{{altCurrency.name}} < span class = "item-note" > {{altCurrency.isoCode}}< / span >
< / div >
2016-12-13 16:32:22 -03:00
< / div >
2016-12-14 11:44:55 -03:00
< ion-infinite-scroll
ng-if="!listComplete"
on-infinite="loadMore()"
distance="50%">
< / ion-infinite-scroll >
2016-06-10 16:49:35 -03:00
< / ion-content >
2016-08-15 17:42:04 -03:00
< / ion-view >