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/pppoe.js
2017-03-11 02:51:06 +07:00

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