mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
10 lines
329 B
JavaScript
10 lines
329 B
JavaScript
|
/**
|
||
|
* Twenty Fourteen Featured Content admin behavior: add a tag suggestion
|
||
|
* when changing the tag.
|
||
|
*/
|
||
|
/* global ajaxurl:true */
|
||
|
|
||
|
jQuery( document ).ready( function( $ ) {
|
||
|
$( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } );
|
||
|
});
|