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

Commit e2f4a95

Browse files
committed
Reflect server change, adjust close button style.
1 parent 70d0204 commit e2f4a95

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

js/templates/buyWizard.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ <h3 class="custCol-text padding30"><%= polyglot.t('CheckExchanges') %> </h3>
4747
<div class="txt-fade fontSize12 rowTop10">
4848
<%= polyglot.t('transactions.BuyerPaidMessageHelp') %>
4949
</div>
50-
<div class="btn btn-corner btn-cornerTR btn-txtOnly js-partialPaymentClose">
51-
<i class="ion-close"></i>
50+
<div class="btn btn-corner btn-cornerTR btn-txtOnly ion-close btn-small textOpacity50 js-partialPaymentClose">
5251
</div>
5352
</div>
5453
</div>

js/views/buyWizardVw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ module.exports = baseVw.extend({
117117

118118
showPartialPaymentMsg: function(data){
119119
var payMsg = "";
120-
this.partialPaymentAmount = data.amount_funded / 100000000; //amount is sent in satoshis
120+
this.partialPaymentAmount = data.amount_funded;
121121
payMsg = window.polyglot.t('transactions.BuyerPaidMessage', {
122122
paidAmount: templateHelpers.intlNumFormat(this.partialPaymentAmount, 8),
123123
totalAmount: templateHelpers.intlNumFormat(this.model.get('totalBTCDisplayPrice'), 8)
@@ -126,7 +126,7 @@ module.exports = baseVw.extend({
126126
this.$('.js-partialPaymentMsg')
127127
.addClass('fadeIn')
128128
.find('.js-partialPaymentTxt').text(payMsg);
129-
129+
130130
this.showPayAddress();
131131
},
132132

0 commit comments

Comments
 (0)