Make WordPress Core

Changeset 26707


Ignore:
Timestamp:
12/05/2013 11:39:47 PM (12 years ago)
Author:
nacin
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/js/featured-content-admin.js

    r26706 r26707  
    44 */
    55/* global ajaxurl:true */
    6 ( function( $ ) {
    7     $( document ).ready( function() {
    8         $( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } );
    9     });
    10 } )( jQuery );
     6
     7jQuery( document ).ready( function( $ ) {
     8    $( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } );
     9});
Note: See TracChangeset for help on using the changeset viewer.