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:
Andrew Nacin 2011-11-07 17:43:04 +00:00
parent 808c8dc6a5
commit 0b5117da6a

View File

@ -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 )