List Tables: revert the majority of [34467]. This was almost universally abhorred (the JS that disabled the bulk dropdowns).
See #31634. git-svn-id: https://develop.svn.wordpress.org/trunk@35277 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
fdd8106001
commit
089276d5e8
|
@ -279,7 +279,7 @@ $_old_files = array(
|
|||
'wp-admin/images/logo-login.gif',
|
||||
'wp-admin/images/star.gif',
|
||||
'wp-admin/js/list-table.dev.js',
|
||||
//'wp-admin/js/list-table.js', // restored in 4.4
|
||||
'wp-admin/js/list-table.js',
|
||||
'wp-includes/default-embeds.php',
|
||||
'wp-includes/js/tinymce/plugins/wordpress/img/help.gif',
|
||||
'wp-includes/js/tinymce/plugins/wordpress/img/more.gif',
|
||||
|
|
|
@ -1,46 +0,0 @@
|
|||
/*globals jQuery */
|
||||
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
var listTable,
|
||||
actions,
|
||||
doActions;
|
||||
|
||||
function getChecked() {
|
||||
return listTable.find( 'table .check-column input[type="checkbox"]:checked' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable and Disable Apply button in wp-list
|
||||
*
|
||||
* @param {jQuery.Event} e
|
||||
*/
|
||||
function setApplyButton( e ) {
|
||||
var checked = getChecked().length;
|
||||
|
||||
if ( 'SELECT' === e.target.tagName ) {
|
||||
actions.val( e.target.value );
|
||||
}
|
||||
|
||||
actions.prop( 'disabled', ! checked );
|
||||
doActions.prop( 'disabled', ! checked || -1 === parseInt( actions.val(), 10 ) );
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
listTable = $( '.wp-list-table' ).closest( 'form' );
|
||||
if ( ! listTable.length ) {
|
||||
return;
|
||||
}
|
||||
|
||||
actions = listTable.find( 'select[name="action"], select[name="action2"]' )
|
||||
.on( 'change', setApplyButton )
|
||||
.prop( 'disabled', true );
|
||||
|
||||
doActions = listTable.find( '#doaction, #doaction2' )
|
||||
.prop( 'disabled', true );
|
||||
|
||||
listTable.find( 'table' ).on( 'click', '.check-column :checkbox', setApplyButton );
|
||||
});
|
||||
|
||||
}(jQuery));
|
|
@ -77,7 +77,7 @@ function wp_default_scripts( &$scripts ) {
|
|||
'secure' => (string) ( 'https' === parse_url( site_url(), PHP_URL_SCHEME ) ),
|
||||
) );
|
||||
|
||||
$scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils', 'list-table'), false, 1 );
|
||||
$scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), false, 1 );
|
||||
did_action( 'init' ) && $scripts->localize( 'common', 'commonL10n', array(
|
||||
'warnDelete' => __( "You are about to permanently delete these items.\n 'Cancel' to stop, 'OK' to delete." ),
|
||||
'dismiss' => __( 'Dismiss this notice.' ),
|
||||
|
@ -396,8 +396,6 @@ function wp_default_scripts( &$scripts ) {
|
|||
|
||||
$scripts->add( 'user-suggest', "/wp-admin/js/user-suggest$suffix.js", array( 'jquery-ui-autocomplete' ), false, 1 );
|
||||
|
||||
$scripts->add( 'list-table', "/wp-admin/js/list-table$suffix.js", array( 'jquery' ), false, 1 );
|
||||
|
||||
$scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", array(), false, 1 );
|
||||
|
||||
$scripts->add( 'wplink', "/wp-includes/js/wplink$suffix.js", array( 'jquery' ), false, 1 );
|
||||
|
|
Loading…
Reference in New Issue