Allow tags autosuggest to work in quick edit when there are no tags. props solarissmoke, see #19176.
git-svn-id: https://develop.svn.wordpress.org/trunk@19204 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
808c8dc6a5
commit
0b5117da6a
@ -179,18 +179,19 @@ inlineEditPost = {
|
||||
$('ul.'+taxname+'-checklist :checkbox', editRow).val(term_ids.split(','));
|
||||
}
|
||||
});
|
||||
|
||||
//flat taxonomies
|
||||
$('.tags_input', rowData).each(function(){
|
||||
var terms = $(this).text();
|
||||
var terms = $(this).text(),
|
||||
taxname = $(this).attr('id').replace('_' + id, ''),
|
||||
textarea = $('textarea.tax_input_' + taxname, editRow);
|
||||
|
||||
if ( terms ) {
|
||||
taxname = $(this).attr('id').replace('_'+id, '');
|
||||
$('textarea.tax_input_'+taxname, editRow).val(terms);
|
||||
$('textarea.tax_input_'+taxname, editRow).suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+taxname, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
|
||||
}
|
||||
if ( terms )
|
||||
textarea.val(terms);
|
||||
|
||||
textarea.suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+taxname, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } );
|
||||
});
|
||||
|
||||
|
||||
// handle the post status
|
||||
status = $('._status', rowData).text();
|
||||
if ( 'future' != status )
|
||||
|
Loading…
Reference in New Issue
Block a user