From 0b46d412cec6bfbae98024f8d83207a9a75f38fb Mon Sep 17 00:00:00 2001 From: Satinder Grewal Date: Thu, 1 Sep 2016 01:50:51 +1200 Subject: [PATCH] after rt bundle progress bar color and animation change --- assets/scripts/dashboard.js | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/scripts/dashboard.js b/assets/scripts/dashboard.js index 3119cdb..9948170 100644 --- a/assets/scripts/dashboard.js +++ b/assets/scripts/dashboard.js @@ -547,6 +547,7 @@ function ShowCoinProgressBar(coin) { $('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+' ) ==>> RT'+CoinInfoData.RTheight); $('div[data-currency="'+coin+'"][id="additional-progress-bars"]').hide(); + $('div[data-currency="'+coin+'"][id="currency-bundles"]').removeClass( "progress-bar-info" ).addClass( "progress-bar-indicating progress-bar-success" ); } if ( parseInt(CoinInfoData.RTheight) == 0 ) { $('div[data-currency="'+coin+'"][id="currency-progressbars"]').show();