Remove redundant closure for such a simple file. see #26445.

Built from https://develop.svn.wordpress.org/trunk@26707


git-svn-id: http://core.svn.wordpress.org/trunk@26596 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-12-05 23:40:11 +00:00
parent b1addd78ca
commit b7c5823bbf

View File

@ -3,8 +3,7 @@
* when changing the tag.
*/
/* global ajaxurl:true */
( function( $ ) {
$( document ).ready( function() {
$( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } );
});
} )( jQuery );
jQuery( document ).ready( function( $ ) {
$( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } );
});