fix indentation

This commit is contained in:
Kadir Sekha 2018-03-14 11:38:03 +09:00
commit 70fb13da84

View file

@ -4,10 +4,10 @@
<ion-nav-buttons side="secondary"> <ion-nav-buttons side="secondary">
<button class="button-share ng-hide" ng-show="wallets[0] && showShareButton" ng-click="shareAddress()"> <button class="button-share ng-hide" ng-show="wallets[0] && showShareButton" ng-click="shareAddress()">
<i class="icon" <i class="icon"
ng-class="{ ng-class="{
'ion-ios-upload-outline': showShareButton == 'iOS', 'ion-ios-upload-outline': showShareButton == 'iOS',
'ion-android-share-alt': showShareButton != 'iOS' 'ion-android-share-alt': showShareButton != 'iOS'
}"></i> }"></i>
</button> </button>
</ion-nav-buttons> </ion-nav-buttons>
</ion-nav-bar> </ion-nav-bar>
@ -28,32 +28,32 @@
</div> </div>
</div> </div>
<div class="address-info" ng-if="wallet && wallet.isComplete()"> <div class="address-info" ng-if="wallet && wallet.isComplete()">
<div ng-show="!showingPaymentReceived"> <div ng-show="!showingPaymentReceived">
<div> <div>
<button ng-show="addr" class="button button-standard button-small" ng-click="requestSpecificAmount()"> <button ng-show="addr" class="button button-standard button-small" ng-click="requestSpecificAmount()">
<span translate>Request Specific amount</span> <span translate>Request Specific amount</span>
</button><br/><br/> </button><br/><br/>
</div> </div>
<div copy-to-clipboard="wallet.coin == 'bch' && bchAddressType.type == 'cashaddr' ? 'bitcoincash:' + addr : addr"> <div copy-to-clipboard="wallet.coin == 'bch' && bchAddressType.type == 'cashaddr' ? 'bitcoincash:' + addr : addr">
<span ng-show="shouldShowReceiveAddressFromHardware()"> <span ng-show="shouldShowReceiveAddressFromHardware()">
<button class="button button-standard button-primary" ng-click="showReceiveAddressFromHardware()"> <button class="button button-standard button-primary" ng-click="showReceiveAddressFromHardware()">
<span translate>Show address</span> <span translate>Show address</span>
</button> </button>
</span> </span>
<qrcode ng-if="addr" size="220" data="{{ protocolHandler }}:{{addr}}" color="#334"></qrcode> <qrcode ng-if="addr" size="220" data="{{ protocolHandler }}:{{addr}}" color="#334"></qrcode>
<div class="address-label"> <div class="address-label">
<span class="ellipsis">{{addr}}</span> <span class="ellipsis">{{addr}}</span>
<ion-spinner ng-show="!addr" class="spinner-dark" icon="crescent"></ion-spinner> <ion-spinner ng-show="!addr" class="spinner-dark" icon="crescent"></ion-spinner>
</div>
<div>
<button ng-show="addr" class="button-address" ng-click="setAddress(true)">
<span translate>Generate new address</span>
</button><br/>
</div>
</div> </div>
<div>
<button ng-show="addr" class="button-address" ng-click="setAddress(true)">
<span translate>Generate new address</span>
</button><br/>
</div> </div>
</div> <!-- animation for payment received -->
</div>
<!-- animation for payment received -->
<div ng-show="showingPaymentReceived" ng-click="showingPaymentReceived = false"> <div ng-show="showingPaymentReceived" ng-click="showingPaymentReceived = false">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.2 130.2"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.2 130.2">
<circle class="path circle" fill="none" stroke="#19B234" stroke-width="6" stroke-miterlimit="10" cx="65.1" cy="65.1" r="62.1"/> <circle class="path circle" fill="none" stroke="#19B234" stroke-width="6" stroke-miterlimit="10" cx="65.1" cy="65.1" r="62.1"/>
@ -93,14 +93,14 @@
{{wallet.name || wallet.id}} {{wallet.name || wallet.id}}
</span> </span>
<p> <p>
<span ng-if="!wallet.balanceHidden"> {{wallet.status.totalBalanceStr}} </span> <span ng-if="!wallet.balanceHidden"> {{wallet.status.totalBalanceStr}} </span>
<span ng-if="wallet.balanceHidden" translate>[Balance Hidden]</span> <span ng-if="wallet.balanceHidden" translate>[Balance Hidden]</span>
<span class="tab-home__wallet__multisig-number" ng-if="wallet.n > 1"> <span class="tab-home__wallet__multisig-number" ng-if="wallet.n > 1">
{{wallet.m}}-of-{{wallet.n}} {{wallet.m}}-of-{{wallet.n}}
</span> </span>
<span class="assertive" ng-if="wallet.error">{{wallet.error}}</span> <span class="assertive" ng-if="wallet.error">{{wallet.error}}</span>
&nbsp; &nbsp;
</p> </p>
<i ng-if="!singleWallet" class="icon bp-arrow-right"></i> <i ng-if="!singleWallet" class="icon bp-arrow-right"></i>
</a> </a>
@ -108,10 +108,10 @@
</ion-content> </ion-content>
<wallet-selector <wallet-selector
wallet-selector-title="walletSelectorTitle" wallet-selector-title="walletSelectorTitle"
wallet-selector-wallets="wallets" wallet-selector-wallets="wallets"
wallet-selector-selected-wallet="wallet" wallet-selector-selected-wallet="wallet"
wallet-selector-show="showWallets" wallet-selector-show="showWallets"
wallet-selector-on-select="onWalletSelect"> wallet-selector-on-select="onWalletSelect">
</wallet-selector> </wallet-selector>
</ion-view> </ion-view>