copay/public/views/preferencesHistory.html

24 lines
859 B
HTML
Raw Normal View History

<div
class="topbar-container"
ng-include="'views/includes/topbar.html'"
2016-06-14 08:07:54 -07:00
ng-init="titleSection='Transaction History'; goBackToState = 'preferencesAdvanced'">
</div>
<div class="content preferences" ng-controller="preferencesHistory">
<h4></h4>
2016-06-14 11:11:56 -07:00
<ul class="no-bullet m0">
<li ng-if="csvReady && !index.isCordova" ng-init="index.updatingTxHistory ? null : csvHistory()"
ng-csv="csvContent" csv-header="csvHeader" filename="Copay-{{index.alias || index.walletName}}.csv">
<span ng-style="{'color':index.backgroundColor}" translate>
Export to file
</span>
2015-12-04 06:20:22 -08:00
</li>
2016-06-14 11:11:56 -07:00
<li ng-if="!csvReady && !index.isCordova">
<span translate>Export to file [preparing...]</span>
</li>
<li ng-click="clearTransactionHistory()" ng-style="{'color':index.backgroundColor}" translate>
2015-12-04 08:30:51 -08:00
Clear cache
2015-12-04 06:20:22 -08:00
</li>
</ul>
</div>