reverse order in transactions list.
This commit is contained in:
parent
7616b4ec89
commit
29a187d36b
1 changed files with 3 additions and 2 deletions
|
|
@ -294,14 +294,15 @@ function drawChart(transactions) {
|
|||
var datime = convertTimestamp(tx.time)
|
||||
|
||||
// make the transactions table
|
||||
transactionsHTML +=
|
||||
transactionsHTML =
|
||||
"<tr><td style='width: 50%'>" +
|
||||
tx.memo +
|
||||
'</td><td>' +
|
||||
datime +
|
||||
'</td><td>' +
|
||||
parseFloat(tx.amount / 1000) +
|
||||
'</td></tr>'
|
||||
'</td></tr>' +
|
||||
transactionsHTML
|
||||
|
||||
// make the line chart
|
||||
balance += parseInt(tx.amount / 1000)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue