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