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