forked from Github-Mirrors/canaille
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
![]() |
$('.confirm').click(function(e){
|
||
|
e.preventDefault();
|
||
|
$('.ui.modal')
|
||
|
.modal({
|
||
|
onApprove : function() {
|
||
|
$('.confirm').unbind('click').click();
|
||
|
},
|
||
|
})
|
||
|
.modal('show');
|
||
|
});
|