+ notify wallet created success
! bug-fixes
This commit is contained in:
@@ -136,10 +136,10 @@ $(document).on("render_send", function() {
|
|||||||
|
|
||||||
iziToast.success({
|
iziToast.success({
|
||||||
title: 'Sent',
|
title: 'Sent',
|
||||||
message: 'Transaction was succesfully sent to the chain',
|
message: 'Transaction was successfully sent to the chain',
|
||||||
position: 'topRight',
|
position: 'topRight',
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -87,6 +87,13 @@ $(document).on("render_wallets", function() {
|
|||||||
function(account) {
|
function(account) {
|
||||||
EthoWallets.addAddressToList(account);
|
EthoWallets.addAddressToList(account);
|
||||||
EthoWallets.renderWalletsState();
|
EthoWallets.renderWalletsState();
|
||||||
|
|
||||||
|
iziToast.success({
|
||||||
|
title: 'Created',
|
||||||
|
message: 'New wallet was successfully created',
|
||||||
|
position: 'topRight',
|
||||||
|
timeout: 5000
|
||||||
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -96,12 +103,11 @@ $(document).on("render_wallets", function() {
|
|||||||
doCreateNewWallet();
|
doCreateNewWallet();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("dlgCreateWalletPassword").off('keypress').on('keypress', function(e) {
|
$("#dlgCreateWalletPassword").off('keypress').on('keypress', function(e) {
|
||||||
if(e.which == 13) {
|
if(e.which == 13) {
|
||||||
doCreateNewWallet();
|
doCreateNewWallet();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".btnChangWalletName").off('click').on('click', function() {
|
$(".btnChangWalletName").off('click').on('click', function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user