Make WordPress Core

Ticket #19176: 19716.diff

File 19716.diff, 757 bytes (added by scottbasgaard, 14 years ago)
  • wp-admin/js/inline-edit-post.dev.js

     
    117117                if ( 'post' == type ) {
    118118                        // support multi taxonomies?
    119119                        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: ", " } );
     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: ", " } );
    121121                }
    122122                $('html, body').animate( { scrollTop: 0 }, 'fast' );
    123123        },