2020-11-01 10:33:56 +00:00
|
|
|
$('.confirm').click(function(e){
|
|
|
|
e.preventDefault();
|
2022-11-15 11:08:17 +00:00
|
|
|
$('#modal-' + e.target.id + '.ui.modal')
|
2020-11-01 10:33:56 +00:00
|
|
|
.modal({
|
|
|
|
onApprove : function() {
|
|
|
|
$('.confirm').unbind('click').click();
|
|
|
|
},
|
|
|
|
})
|
|
|
|
.modal('show');
|
|
|
|
});
|