List Tables: revert the majority of [34467]. This was almost universally abhorred (the JS that disabled the bulk dropdowns).
See #31634. Built from https://develop.svn.wordpress.org/trunk@35277 git-svn-id: http://core.svn.wordpress.org/trunk@35243 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
89d1eb1e00
commit
62d8b8c5bc
|
@ -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));
|
|
@ -1 +0,0 @@
|
|||
!function(a){"use strict";function b(){return d.find('table .check-column input[type="checkbox"]:checked')}function c(a){var c=b().length;"SELECT"===a.target.tagName&&e.val(a.target.value),e.prop("disabled",!c),f.prop("disabled",!c||-1===parseInt(e.val(),10))}var d,e,f;a(document).ready(function(){d=a(".wp-list-table").closest("form"),d.length&&(e=d.find('select[name="action"], select[name="action2"]').on("change",c).prop("disabled",!0),f=d.find("#doaction, #doaction2").prop("disabled",!0),d.find("table").on("click",".check-column :checkbox",c))})}(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 );
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-35276';
|
||||
$wp_version = '4.4-alpha-35277';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue