forked from kevinowino869/mitrobill
Sample
admin
docs
pages_template
qrcode
system
ui
cache
compiled
conf
lib
c
bandwidth.js
customers.js
hotspot.js
index.html
pool.js
pppoe.js
prepaid.js
routers.js
users.js
voucher.js
css
dt
js
index.html
theme
ui
index.html
.gitignore
LICENSE
README.md
index.php
9 lines
283 B
JavaScript
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;
|
||
|
}
|
||
|
});
|
||
|
});
|