Make WordPress Core


Ignore:
Timestamp:
08/30/2011 01:12:26 AM (15 years ago)
Author:
koopersmith
Message:

Switch admin menus to flyouts from dropdowns. First pass, see #18382.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/script-loader.php

    r18620 r18621  
    6262        $scripts->add( 'utils', "/wp-admin/js/utils$suffix.js", false, '20101110' );
    6363
    64         $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), '20110711', 1 );
     64        $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), '20110829', 1 );
    6565        $scripts->add_script_data( 'common', 'commonL10n', array(
    6666                'warnDelete' => __("You are about to permanently delete the selected items.\n  'Cancel' to stop, 'OK' to delete.")
     
    156156        // common bits for both uploaders
    157157        $max_upload_size = ( (int) ( $max_up = @ini_get('upload_max_filesize') ) < (int) ( $max_post = @ini_get('post_max_size') ) ) ? $max_up : $max_post;
    158        
     158
    159159        if ( empty($max_upload_size) )
    160160                $max_upload_size = __('not configured');
     
    403403        $no_suffix = array( 'farbtastic' );
    404404
    405         $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110828' );
     405        $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110829' );
    406406
    407407        $styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array('wp-admin'), '20110711' );
     
    409409
    410410        // all colors stylesheets need to have the same query strings (cache manifest compat)
    411         $colors_version = '20110822';
     411        $colors_version = '20110829';
    412412
    413413        // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
     
    659659/**
    660660 * Prints the styles queue in the HTML head on admin pages.
    661  * 
     661 *
    662662 * @since 2.8
    663663 */
     
    733733/**
    734734 * Determine the concatenation and compression settings for scripts and styles.
    735  * 
     735 *
    736736 * @since 2.8
    737737 */
Note: See TracChangeset for help on using the changeset viewer.