phpnuxbill/ui/lib/c/routers.js
2017-03-11 02:51:06 +07:00

9 lines
283 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=routers/delete/" + id;
}
});
});