copay/www/views/advancedSettings.html

34 lines
1.4 KiB
HTML
Raw Normal View History

2016-09-27 12:25:50 -07:00
<ion-view id="advanced-settings" class="settings">
2016-09-27 11:57:39 -07:00
<ion-nav-bar class="bar-royal">
<ion-nav-title>{{'Advanced Settings' | translate}}</ion-nav-title>
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
<ion-content>
<div class="settings-list list">
<ion-toggle class="has-comment" ng-model="spendUnconfirmed.value" toggle-class="toggle-balanced" ng-change="spendUnconfirmedChange()">
2016-09-27 11:57:39 -07:00
<span class="toggle-label" translate>Use Unconfirmed Funds</span>
</ion-toggle>
<div class="comment" translate>
If enabled, wallets will also try to spend unconfirmed funds. This option may cause transaction delays.
2016-09-27 11:57:39 -07:00
</div>
2017-02-28 05:32:10 -08:00
2017-02-28 05:02:07 -08:00
<div class="item item-divider"></div>
2016-09-27 11:57:39 -07:00
<ion-toggle class="has-comment" ng-model="recentTransactionsEnabled.value" toggle-class="toggle-balanced" ng-change="recentTransactionsChange()">
2016-09-27 11:57:39 -07:00
<span class="toggle-label" translate>Recent Transaction Card</span>
</ion-toggle>
<div class="comment" translate>
If enabled, the Recent Transactions card - a list of transactions occuring across all wallets - will appear in the Home tab.
</div>
2017-02-28 05:02:07 -08:00
<div class="item item-divider"></div>
2017-01-31 11:32:45 -08:00
<ion-toggle ng-model="hideNextSteps.value" ng-if="!isWindowsPhoneApp" toggle-class="toggle-balanced" ng-change="nextStepsChange()">
2017-01-31 11:32:45 -08:00
<span class="toggle-label" translate>Hide Next Steps Card</span>
</ion-toggle>
2016-09-27 11:57:39 -07:00
</div>
</ion-content>
</ion-view>