Fix export to file action

This commit is contained in:
Gustavo Maximiliano Cortez 2016-06-15 09:36:01 -03:00
parent 86da7b8d54
commit c05070934d
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 3 additions and 3 deletions

View File

@ -6,14 +6,14 @@
<div class="content preferences" ng-controller="preferencesHistory">
<h4></h4>
<ul class="no-bullet m0">
<li ng-if="csvReady && !index.isCordova" ng-init="index.updatingTxHistory ? null : csvHistory()"
<ul class="no-bullet m0" ng-init="index.updatingTxHistory ? null : csvHistory()">
<li ng-show="csvReady && !index.isCordova"
ng-csv="csvContent" csv-header="csvHeader" filename="Copay-{{index.alias || index.walletName}}.csv">
<span ng-style="{'color':index.backgroundColor}" translate>
Export to file
</span>
</li>
<li ng-if="!csvReady && !index.isCordova">
<li ng-show="!csvReady && !index.isCordova">
<span class="right text-gray text-italic" translate>preparing...</span>
<span translate>Export to file</span>
</li>