reverse order in transactions list.
This commit is contained in:
@@ -294,14 +294,15 @@ function drawChart(transactions) {
|
|||||||
var datime = convertTimestamp(tx.time)
|
var datime = convertTimestamp(tx.time)
|
||||||
|
|
||||||
// make the transactions table
|
// make the transactions table
|
||||||
transactionsHTML +=
|
transactionsHTML =
|
||||||
"<tr><td style='width: 50%'>" +
|
"<tr><td style='width: 50%'>" +
|
||||||
tx.memo +
|
tx.memo +
|
||||||
'</td><td>' +
|
'</td><td>' +
|
||||||
datime +
|
datime +
|
||||||
'</td><td>' +
|
'</td><td>' +
|
||||||
parseFloat(tx.amount / 1000) +
|
parseFloat(tx.amount / 1000) +
|
||||||
'</td></tr>'
|
'</td></tr>' +
|
||||||
|
transactionsHTML
|
||||||
|
|
||||||
// make the line chart
|
// make the line chart
|
||||||
balance += parseInt(tx.amount / 1000)
|
balance += parseInt(tx.amount / 1000)
|
||||||
|
|||||||
Reference in New Issue
Block a user