mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
'use strict';
|
|
|
|
(function() {
|
|
$(function() {
|
|
$('.add_cleanup_exception').on('click', function() {
|
|
const row = $(this).parents('tr');
|
|
exec_json('admin.procAdminAddCleanupException', { path: $(this).data('path') }, function() {
|
|
row.fadeOut();
|
|
});
|
|
});
|
|
});
|
|
})();
|