mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-14 12:17:18 +08:00
9 lines
No EOL
290 B
JavaScript
9 lines
No EOL
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;
|
|
}
|
|
});
|
|
}); |