Make WordPress Core

Ticket #27599: 27599.patch

File 27599.patch, 744 bytes (added by afercia, 11 years ago)
  • wp-content/themes/twentyfourteen/js/featured-content-admin.js

     
    55/* global ajaxurl:true */
    66
    77jQuery( document ).ready( function( $ ) {
    8         $( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } );
     8        $( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2, onSelect: function() { $( this ).change() } } );
    99});