2018-08-14 15:17:22 +02:00
|
|
|
$(document).on('click', 'button#archive-procedure', function() {
|
|
|
|
$('button#archive-procedure').hide();
|
|
|
|
$('#confirm').show();
|
|
|
|
});
|
2015-11-26 18:41:41 +01:00
|
|
|
|
2018-08-14 15:17:22 +02:00
|
|
|
$(document).on('click', '#confirm #cancel', function() {
|
|
|
|
$('button#archive-procedure').show();
|
|
|
|
$('#confirm').hide();
|
|
|
|
});
|