2018-10-02 16:59:30 +02:00
|
|
|
/* globals $ */
|
|
|
|
|
2020-04-30 15:42:29 +02:00
|
|
|
$(document).on('click', '.delete', function () {
|
2018-08-09 11:19:56 +02:00
|
|
|
$(this).hide();
|
2020-04-30 15:42:29 +02:00
|
|
|
$(this).closest('td').find('.confirm').show();
|
2018-08-09 11:19:56 +02:00
|
|
|
});
|
|
|
|
|
2020-04-30 15:42:29 +02:00
|
|
|
$(document).on('click', '.cancel', function () {
|
|
|
|
$(this).closest('td').find('.delete').show();
|
|
|
|
$(this).closest('td').find('.confirm').hide();
|
2018-08-09 11:19:56 +02:00
|
|
|
});
|