118 | | // support multi taxonomies? |
119 | | tax = 'post_tag'; |
120 | | $('tr.inline-editor textarea[name="tags_input"]').suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } ); |
| 118 | $('#bulk-edit textarea[name^="tax_input"]').each(function() { |
| 119 | var tax = $(this).attr('name').replace(/(^.*\[|\].*$)/g, ''); |
| 120 | $('tr.inline-editor textarea[name="tax_input['+tax+']"]').suggest( 'admin-ajax.php?action=ajax-tag-search&tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: ", " } ); |
| 121 | }); |