.github
admin
docs
install
pages_template
qrcode
scan
system
ui
cache
compiled
conf
lib
c
bandwidth.js
customers.js
hotspot.js
index.html
plan.js
pool.js
pppoe.js
routers.js
users.js
voucher.js
css
dt
js
index.html
themes
ui
ui_custom
index.html
.gitignore
.htaccess_firewall
CHANGELOG.md
Dockerfile
LICENSE
README.md
composer.json
config.sample.php
docker-compose.example.yml
favicon.ico
index.php
init.php
radius.php
update.php
version.json
9 lines
288 B
JavaScript
9 lines
288 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=plan/voucher-delete/" + id;
|
|
}
|
|
});
|
|
}); |