canaille-globuzma/canaille/static/js/users.js
2023-03-09 19:31:59 +01:00

10 lines
312 B
JavaScript

$( function () {
$('.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');
});
});