From 5c0de5f97d601d3d55b26810f9ab92ad1ba3f214 Mon Sep 17 00:00:00 2001 From: Satinder Grewal Date: Thu, 1 Sep 2016 01:41:04 +1200 Subject: [PATCH] minor fix --- assets/scripts/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/scripts/dashboard.js b/assets/scripts/dashboard.js index fe8cf51..3119cdb 100644 --- a/assets/scripts/dashboard.js +++ b/assets/scripts/dashboard.js @@ -549,7 +549,7 @@ function ShowCoinProgressBar(coin) { $('div[data-currency="'+coin+'"][id="additional-progress-bars"]').hide(); } if ( parseInt(CoinInfoData.RTheight) == 0 ) { - $('div[data-currency="'+coin+'"][id="currency-progressbars"]').hide(); + $('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)+'% - ( '+CoinInfoData.blocks+' / '+CoinInfoData.longestchain+' )'); $('div[data-currency="'+coin+'"][id="currency-utxo"]').width(parseFloat(CoinInfoData.utxo).toFixed(2)+'%');