Fix fee level, preferences by wallet, delete, info
This commit is contained in:
parent
a200d42bcd
commit
a1672e1e95
17 changed files with 106 additions and 128 deletions
|
|
@ -6,9 +6,7 @@
|
|||
</ion-nav-bar>
|
||||
<ion-content ng-controller="preferencesInformation" ng-init="init()">
|
||||
<div class="list">
|
||||
<div class="item item-divider">
|
||||
Wallet Information
|
||||
</div>
|
||||
<div class="item item-divider"></div>
|
||||
<div class="item" ng-click="saveBlack()">
|
||||
<span translate>Wallet Name (at creation)</span>
|
||||
<span class="item-note">
|
||||
|
|
@ -64,23 +62,23 @@
|
|||
</span>
|
||||
</div>
|
||||
|
||||
<div class="item item-divider">
|
||||
<div ng-show="wallet.cachedStatus.wallet.copayers[0]" class="item item-divider">
|
||||
Copayers
|
||||
</div>
|
||||
|
||||
<div class="item item-icon-right" ng-repeat="copayer in wallet.copayers">
|
||||
<span ng-show="copayer.id == wallet.copayerId" translate>{{copayer.name}} ({{'Me'|translate}})</span>
|
||||
<span ng-style="{'color': 'grey';}" ng-show="copayer.id != wallet.copayerId" translate>{{copayer.name}}</span>
|
||||
<i class="icon ion-ios-checkmark-outline"></i>
|
||||
<div class="item item-icon-right" ng-repeat="copayer in wallet.cachedStatus.wallet.copayers">
|
||||
{{copayer.name}}
|
||||
<span ng-show="copayer.id == wallet.copayerId">
|
||||
({{'Me'|translate}})
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="item item-divider">
|
||||
<div class="item item-divider" translate>
|
||||
Extended Public Keys
|
||||
</div>
|
||||
|
||||
<div class="item" ng-repeat="pk in pubKeys" copy-to-clipboard="pk">
|
||||
<span translate>Copayer {{$index}}<</span>
|
||||
<i class="icon ion-ios-checkmark-outline"></i>
|
||||
<span translate>Copayer {{$index}}</span>
|
||||
<span class="item-note">
|
||||
<span>Copayer {{$index}}</span>
|
||||
<span>{{pk}}</span>
|
||||
|
|
@ -89,27 +87,27 @@
|
|||
</div>
|
||||
|
||||
<div ng-show="addrs">
|
||||
<div class="item item-divider">
|
||||
<div class="item item-divider" translate>
|
||||
Last Wallet Addresses
|
||||
</div>
|
||||
|
||||
<div class="item" ng-repeat="a in addrs" class="oh" copy-to-clipboard="a.address">
|
||||
<span>{{a.address}}</span>
|
||||
<span>{{a.path}} · {{a.createdOn *1000 | amDateFormat:'MMMM Do YYYY, h:mm a' }}</span>
|
||||
<i class="icon ion-ios-checkmark-outline"></i>
|
||||
<span>{{a.address}}</span>
|
||||
<span class="item-note">{{a.path}} · {{a.createdOn *1000 | amDateFormat:'MMMM Do YYYY, h:mm a' }}</span>
|
||||
</div>
|
||||
<div translate>
|
||||
<div class="padding text-center" translate>
|
||||
Only Main (not change) addresses are shown. The addresses on this list were not verified locally at this time.
|
||||
</div>
|
||||
<button class="button button-block button-positive" ng-click="scan()" translate>
|
||||
Scan addresses for funds
|
||||
</button>
|
||||
Scan addresses for funds
|
||||
</button>
|
||||
<button class="button button-block button-positive" ng-show="isCordova" ng-click="sendAddrs()" translate>
|
||||
Send addresses by email
|
||||
</button>
|
||||
Send addresses by email
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div ng-show="wallet.balanceByAddress" ng-if="wallet.balanceByAddress[0]">
|
||||
<div class="item item-divider">
|
||||
<div ng-show="wallet.balanceByAddress[0]">
|
||||
<div class="item item-divider" translate>
|
||||
Balance By Address
|
||||
</div>
|
||||
<div class="item" ng-repeat="a in wallet.balanceByAddress" copy-to-clipboard="a.address">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue