mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-18 16:45:31 +01:00
a1036ac9f0
* Add global variable flags to top of JS files. * Group variable declarations correctly. Built from https://develop.svn.wordpress.org/trunk@26084 git-svn-id: http://core.svn.wordpress.org/trunk@26004 1a063a9b-81f0-0310-95a4-ce76da25c4cd
5 lines
204 B
JavaScript
5 lines
204 B
JavaScript
/* global ajaxurl:true */
|
|
jQuery( function( $ ) {
|
|
$( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } );
|
|
} );
|