Twenty Fourteen: Wait for DOM ready in the customizer, which was breaking IE8.

props ocean90.
fixes #26445.


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

View File

@ -4,5 +4,7 @@
*/
/* 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 );