changeset 5 | 5e2f62d02dcd |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wp/wp-content/themes/twentyfourteen/js/featured-content-admin.js Tue Jun 09 03:35:32 2015 +0200 @@ -0,0 +1,9 @@ +/** + * 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 } ); +});