10 lines
298 B
Plaintext
10 lines
298 B
Plaintext
|
$('.plugin_files_block a.delete').live('click', function(){
|
||
|
$(this).parents('.list_item').remove();
|
||
|
});
|
||
|
|
||
|
$(document).on('click', '.action a.remove_existing_record', function(){
|
||
|
$(this).next('.should_destroy').attr('value', 1);
|
||
|
$("tr#plugin_file_" + $(this).prev().attr('value')).hide();
|
||
|
});
|
||
|
|