canaille-globuzma/oidc_ldap_bridge/static/js/users.js
Éloi Rivard 2eba625c39 Packaging
2020-08-31 11:23:50 +02:00

16 lines
432 B
JavaScript

$( function () {
$('table').DataTable({
"language": {
"url": "/static/datatables/French.json"
}
});
$('.delete-user').click(function(event){
event.preventDefault();
var that = this;
$('.delete-confirmation').unbind('click').click(function(){
window.location.href = $(that).attr('href');
});
$('.ui.basic.modal').modal('show');
});
});