Browse Source

hide activating alert in native gui once activating status goes away

master
Satinder Grewal 8 years ago
parent
commit
a76253cff0
  1. 1
      assets/scripts/kmd_wallet_dashboard.js
  2. 3
      assets/scripts/sidebar.js

1
assets/scripts/kmd_wallet_dashboard.js

@ -252,5 +252,6 @@ function KMD_ProgressBar() {
$('span[data-extcoin="' + extcoin + '"][id="extcoin-synced-blocks"]').text(getinfotmp.blocks);
$('span[data-extcoin="' + extcoin + '"][id="extcoin-longestchain"]').text(getinfotmp.longestchain);
$('span[data-extcoin="' + extcoin + '"][id="extcoin-connections"]').text(getinfotmp.connections);
$('#extcoin-wallet-activating-alert').hide();
}
}

3
assets/scripts/sidebar.js

@ -399,6 +399,7 @@ function applyKMDWalletStyle() {
$('#jumblr_actions_header').hide();
$('#easydex_btc_btcd_balances_header').hide();
sessionStorage.setItem('NativeWalletActions', 'start');
getTotalKMDBalance();
}
function removeKMDWalletStyle() {
@ -424,6 +425,7 @@ function applyZECWalletStyle() {
$('#jumblr_actions_header').hide();
$('#easydex_btc_btcd_balances_header').hide();
sessionStorage.setItem('NativeWalletActions', 'start');
getTotalKMDBalance();
}
function removeZECWalletStyle() {
@ -472,6 +474,7 @@ function applyACPAXWalletStyle() {
$('#jumblr_actions_header').hide();
$('#easydex_btc_btcd_balances_header').hide();
sessionStorage.setItem('NativeWalletActions', 'start');
getTotalKMDBalance();
}
function removeACPAXWalletStyle() {

Loading…
Cancel
Save