You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
684 B
23 lines
684 B
$(document).ready(function() {
|
|
|
|
$('.delete_license').click(function(e){
|
|
e.preventDefault();
|
|
var accountID = $(this).data('id');
|
|
|
|
$('#dialogs').html('Удалить счет на оплату?');
|
|
$('#dialogs').dialog({
|
|
buttons: {
|
|
"Да": function(){
|
|
$.post('/my/delete_license/' + accountID + '/', function(data){
|
|
$('.account_' + data['id']).remove()
|
|
});
|
|
$(this).dialog("close");
|
|
},
|
|
"Нет": function(){
|
|
$(this).dialog("close");
|
|
}
|
|
}
|
|
})
|
|
})
|
|
});
|
|
|
|
|