bootbox update for zeroconf deposit

This commit is contained in:
satindergrewal 2017-11-25 12:33:26 +13:00
parent 77eaa357fb
commit 6be4a920ab
2 changed files with 23 additions and 5 deletions

View File

@ -5155,10 +5155,29 @@ function ZeroConfDeposit(deposit_weeks, deposit_amount) {
toastr.error(zconf_deposit_data.error, 'ZeroConf Notification');
}
if (zconf_deposit_data.result == 'success') {
bootbox.alert(`<b>Address: </b> ${zconf_deposit_data.address}<br>
<b>deposit: </b> ${zconf_deposit_data.deposit}<br>
<b>expiration: </b> ${zconf_deposit_data.expiration}<br>
<a href="#" onclick="shell.openExternal(https://kmd.explorer.supernet.org/tx/'`+zconf_deposit_data.txid+`'); return false;">` + zconf_deposit_data.txid + `</a>`);
var zconf_depoit_bootbox = bootbox.dialog({
title: 'ZeroConf security deposit sent!',
message: `<b>Address: </b> ${zconf_deposit_data.address}<br>
<b>deposit: </b> ${zconf_deposit_data.deposit}<br>
<b>expiration: </b> ${zconf_deposit_data.expiration}<br>
<a href="#" class="zconf_deposit_txid_bootbox" data-txid="${zconf_deposit_data.txid}">` + zconf_deposit_data.txid + `</a>`,
closeButton: false,
size: 'medium',
buttons: {
cancel: {
label: "Close",
className: 'btn-default',
callback: function(){
}
}
}
})
zconf_depoit_bootbox.init(function(){
$('.zconf_deposit_txid_bootbox').click(function(){
console.log($(this).data());
shell.openExternal('https://kmd.explorer.supernet.org/tx/'+$(this).data('txid'));
});
});
getZeroConfDepositHistory();
}
}).fail(function(jqXHR, textStatus, errorThrown) {

View File

@ -1,7 +1,6 @@
var zeroconf_weeks_select_options = '';
zeroconf_weeks_select_options = `
<option data-content="0 Week" data-tokens="0 week">0</option>
<option data-content="1 Week" data-tokens="1 week">1</option>
<option data-content="2 Weeks" data-tokens="2 week">2</option>
<option data-content="3 Weeks" data-tokens="3 week">3</option>