forked from Github-Mirrors/canaille
10 lines
312 B
JavaScript
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');
|
|
});
|
|
});
|