21 lines
826 B
HTML
21 lines
826 B
HTML
<div
|
|
class="topbar-container"
|
|
ng-include="'views/includes/topbar.html'"
|
|
ng-init="titleSection='Transaction History'; goBackToState = 'preferencesAdvanced'">
|
|
</div>
|
|
<div class="content preferences" ng-controller="preferencesHistory">
|
|
<h4></h4>
|
|
|
|
<ul class="no-bullet m0" ng-if="!index.isCordova" ng-init="index.updatingTxHistory ? null : csvHistory()">
|
|
<li ng-if="csvReady">
|
|
<a ng-csv="csvContent" csv-header="csvHeader" ng-style="{'color':index.backgroundColor}"
|
|
filename="Copay-{{index.alias || index.walletName}}.csv" translate>Export to file</a>
|
|
</li>
|
|
<li ng-if="!csvReady">
|
|
<span translate>Export to file [preparing...]</span>
|
|
</li>
|
|
<li ng-click="clearTransactionHistory()" ng-style="{'color':index.backgroundColor}" translate>
|
|
Clear cache
|
|
</li>
|
|
</ul>
|
|
</div>
|