diff --git a/gui/css/custom.css b/gui/css/custom.css index 5b80140..281bdeb 100644 --- a/gui/css/custom.css +++ b/gui/css/custom.css @@ -283,7 +283,8 @@ table tbody tr:first-child td { } #orderbook-asks-spinner, -#exchange-swap-status-spinner { +#exchange-swap-status-spinner, +#trades-history-spinner { position: absolute; z-index: 100; top: 70px; diff --git a/gui/index.html b/gui/index.html index bb5aaa5..b3c56b6 100644 --- a/gui/index.html +++ b/gui/index.html @@ -139,9 +139,16 @@ Refresh -
+
+ + + + + + +
- + - + `, closeButton: false, size: 'large', @@ -4321,7 +4321,7 @@ function check_swap_status_details(swap_data) { //bot_screen_coin_balance(); //bot_screen_sellcoin_balance_Interval = setInterval(bot_screen_sellcoin_balance, 30000); //bot_screen_sellcoin_balance(); - + var dexmode = sessionStorage.getItem('mm_dexmode'); var selected_dICO_coin = sessionStorage.getItem('mm_selected_dICO_coin'); if (dexmode == 'dICO') { @@ -4400,7 +4400,7 @@ function check_swap_status(sig) { sessionStorage.setItem('mm_usercoins', JSON.stringify(data.coins)); sessionStorage.setItem('mm_userpass', data.userpass); sessionStorage.setItem('mm_mypubkey', data.mypubkey); - + var dexmode = sessionStorage.getItem('mm_dexmode'); var selected_dICO_coin = sessionStorage.getItem('mm_selected_dICO_coin'); if (dexmode == 'dICO') { @@ -4485,7 +4485,7 @@ function hashCode(str) { // java String#hashCode hash = str.charCodeAt(i) + ((hash << 5) - hash); } return hash; -} +} function intToRGB(i){ var c = (i & 0x00FFFFFF) @@ -4769,6 +4769,8 @@ function constructTradesHistory() { } else { $('#trades-history-content').html('No trade history or swap(s) still in progress'); } + } else { + $('#trades-history-content').html('No trade history or swap(s) still in progress'); } }); }