Files
.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
mitrobill/ui/lib/c/voucher.js
2024-03-16 20:41:24 +07:00

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;
}
});
});