copay/www/views/preferencesHistory.html

23 lines
776 B
HTML
Raw Normal View History

2016-08-17 09:07:48 -07:00
<ion-view>
<ion-nav-bar class="bar-royal">
<ion-nav-title>{{'Transaction History' | translate}}</ion-nav-title>
2016-08-29 12:48:15 -07:00
<ion-nav-back-button>
</ion-nav-back-button>
2016-08-16 12:47:51 -07:00
</ion-nav-bar>
<ion-content>
2016-08-16 12:47:51 -07:00
<div class="item item-divider"></div>
2016-09-12 12:50:31 -07:00
<div class="item" ng-show="csvReady && !isCordova" ng-csv="csvContent" csv-header="csvHeader" filename="Copay-{{wallet.name}}.csv">
2016-08-16 12:47:51 -07:00
<span translate>Export to file</span>
</div>
2016-09-12 12:50:31 -07:00
<div class="item" ng-show="!csvReady && !isCordova">
2016-06-14 14:17:52 -07:00
<span translate>Export to file</span>
2016-08-16 12:47:51 -07:00
<span class="item-note" translate>
preparing...
</span>
</div>
<div class="item assertive" ng-click="clearTransactionHistory()">
2016-08-16 12:47:51 -07:00
<span translate>Clear cache</span>
</div>
</ion-content>
</ion-view>