diff --git a/assets/scripts/dashboard.js b/assets/scripts/dashboard.js index 54ec504..7f34ab2 100644 --- a/assets/scripts/dashboard.js +++ b/assets/scripts/dashboard.js @@ -117,16 +117,16 @@ var Dashboard = function() { walletDivContent += '
'; walletDivContent += ''; walletDivContent += '
'; @@ -540,7 +540,7 @@ function ShowCoinProgressBar(coin) { console.log(coin+' is less than 99% complete.'); $('div[data-currency="'+coin+'"][id="currency-progressbars"]').show(); $('div[data-currency="'+coin+'"][id="currency-bundles"]').width(parseFloat(CoinInfoData.bundles).toFixed(2)+'%'); - $('span[data-currency="'+coin+'"][id="currency-bundles-percent"]').text(parseFloat(CoinInfoData.bundles).toFixed(2)+'%'); + $('span[data-currency="'+coin+'"][id="currency-bundles-percent"]').text(parseFloat(CoinInfoData.bundles).toFixed(2)+'% - ('+CoinInfoData.blocks+'/'+CoinInfoData.longestchain+')'); $('div[data-currency="'+coin+'"][id="currency-utxo"]').width(parseFloat(CoinInfoData.utxo).toFixed(2)+'%'); $('span[data-currency="'+coin+'"][id="currency-utxo-percent"]').text(parseFloat(CoinInfoData.utxo).toFixed(2)+'%'); $('div[data-currency="'+coin+'"][id="currency-balances"]').width(parseFloat(CoinInfoData.balances).toFixed(2)+'%');