mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-14 20:24:55 +08:00
9 lines
290 B
JavaScript
9 lines
290 B
JavaScript
|
$(document).on("click", ".cdelete", function(e) {
|
||
|
e.preventDefault();
|
||
|
var id = this.id;
|
||
|
bootbox.confirm("Are you sure?", function(result) {
|
||
|
if(result){
|
||
|
window.location.href = "index.php?_route=settings/users-delete/" + id;
|
||
|
}
|
||
|
});
|
||
|
});
|