Make WordPress Core

Changeset 35277


Ignore:
Timestamp:
10/20/2015 04:28:05 AM (9 years ago)
Author:
wonderboymusic
Message:

List Tables: revert the majority of [34467]. This was almost universally abhorred (the JS that disabled the bulk dropdowns).

See #31634.

Location:
trunk/src
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/update-core.php

    r34912 r35277  
    280280'wp-admin/images/star.gif',
    281281'wp-admin/js/list-table.dev.js',
    282 //'wp-admin/js/list-table.js', // restored in 4.4
     282'wp-admin/js/list-table.js',
    283283'wp-includes/default-embeds.php',
    284284'wp-includes/js/tinymce/plugins/wordpress/img/help.gif',
  • trunk/src/wp-includes/script-loader.php

    r35253 r35277  
    7878    ) );
    7979
    80     $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils', 'list-table'), false, 1 );
     80    $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), false, 1 );
    8181    did_action( 'init' ) && $scripts->localize( 'common', 'commonL10n', array(
    8282        'warnDelete' => __( "You are about to permanently delete these items.\n  'Cancel' to stop, 'OK' to delete." ),
     
    397397    $scripts->add( 'user-suggest', "/wp-admin/js/user-suggest$suffix.js", array( 'jquery-ui-autocomplete' ), false, 1 );
    398398
    399     $scripts->add( 'list-table', "/wp-admin/js/list-table$suffix.js", array( 'jquery' ), false, 1 );
    400 
    401399    $scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", array(), false, 1 );
    402400
Note: See TracChangeset for help on using the changeset viewer.