This repository was archived by the owner on May 16, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments