Wallet/public/views/preferencesHistory.html

17 lines
706 B
HTML
Raw Normal View History

<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 as history">
<h4></h4>
<ul class="no-bullet m0 size-14">
2015-12-03 16:53:34 -03:00
<li class="line-b p20 oh" ng-show="!index.isCordova" id="export_file" type="file" nwsaveas="Copay-{{index.alias || index.walletName}}.csv" accept=".csv" ng-click="index.csvHistory();">
<i class="fi-page-export-csv"></i>
2015-12-03 16:53:34 -03:00
<a translate>Export to file</a>
</li>
<li class="line-b p20 oh" ng-click="history.clearTransactionHistory();">
<a translate>Clear cache</a>
</li>
</ul>
</div>