Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 479b4fb

Browse files
committed
fix international prices on settings/store/moderator fees and transactionModal/payment amount
1 parent ff061f3 commit 479b4fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/templates/transactionModal.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h3 class="txt-bright"><%= polyglot.t('CheckExchanges') %> </h3>
4444
<div class="pull-left pad20Left txt-bright" style="width:255px;">
4545
<div class="txt-center row10 textSize16px">
4646
<%= polyglot.t('buyFlow.SendBTCtoAddress', {
47-
amount: ob.buyer_order.order.payment.amount,
47+
amount: ob.intlNumFormat(ob.buyer_order.order.payment.amount),
4848
recipient: '<a class="textSize11px" href="bitcoin:' + ob.buyer_order.order.payment.address + '?amount=' + ob.buyer_order.order.payment.amount + '&message=' + ob.vendor_offer.listing.item.title + '">' + ob.buyer_order.order.payment.address + '</a>'
4949
})
5050
%>

js/templates/userShort.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</div>
8686
<% if(ob.isModerator){ %>
8787
<div class="pull-right rowTop10 fontSize12 txt-fade">
88-
<%= polyglot.t('ModeratorFee') %> <%= ob.fee.toFixed(2) %>%
88+
<%= polyglot.t('ModeratorFee') %> <%= ob.intlNumFormat(ob.fee, 2) %>%
8989
</div>
9090
<% } %>
9191
</div>

0 commit comments

Comments
 (0)