forked from kevinowino869/mitrobill
.github
admin
install
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
themes
ui
ui_custom
index.html
.gitignore
CHANGELOG.md
LICENSE
README.md
composer.json
config.sample.php
favicon.ico
index.php
update.php
version.json
9 lines
291 B
JavaScript
9 lines
291 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=prepaid/voucher-delete/" + id;
|
|
}
|
|
});
|
|
}); |