Merge pull request #6167 from ajp8164/feat/wc-card-compatibility

Currency and field compatibility with wavecrest card.
This commit is contained in:
Gustavo Maximiliano Cortez 2017-06-05 11:37:54 -03:00 committed by GitHub
commit 8b28e708bc
5 changed files with 33 additions and 6 deletions

View file

@ -35,9 +35,9 @@
'balanced': tx.price.toString().indexOf('-') == -1 && !tx.pending,
'text-gray': tx.price.toString().indexOf('-') == -1 && tx.pending}">
<span ng-show="tx.price.toString().indexOf('-') == -1">+ </span>
{{tx.price | currency:'$':2 }}
{{tx.price | currency:bitpayCard.currencySymbol:2 }}
</div>
<time class="size-12 text-gray" ng-if="!tx.pending">{{tx.runningBalance | currency:'$':2}}</time>
<time class="size-12 text-gray" ng-if="!tx.pending">{{tx.runningBalance | currency:bitpayCard.currencySymbol:2}}</time>
<span class="size-12 text-gray text-italic" ng-if="tx.pending" class="tu" translate>Pending</span>
</div>
</div>