Multi currency net worth box.

This commit is contained in:
James Cole
2018-01-13 18:40:28 +01:00
parent edd5215b21
commit 5c27c8e633
3 changed files with 25 additions and 9 deletions

View File

@@ -67,7 +67,7 @@ function getPiggyBanks() {
function getNetWorthBox() {
// box-net-worth
$.getJSON('json/box/net-worth').done(function (data) {
$('#box-net-worth').html(data.net_worth);
$('#box-net-worth').html(data.net_worths.join(', '));
});
}