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

git-svn-id: https://develop.svn.wordpress.org/trunk@26707 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-12-05 23:39:47 +00:00
parent e1c50ac689
commit 0bfdd9f189
1 changed files with 4 additions and 5 deletions

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 } );
});