Make WordPress Core

Ticket #39186: 39186.2.patch

File 39186.2.patch, 849 bytes (added by bhargavbhandari90, 8 years ago)
  • edit.php

     
    357357<?php $wp_list_table->display(); ?>
    358358
    359359</form>
    360 
     360<script type="text/javascript">
     361        jQuery(document).ready(function($){
     362                var post_table_form = $('#posts-filter');
     363                jQuery( '#bulk-action-selector-top, #bulk-action-selector-bottom' ).on( 'change ready', function() {
     364                        if( jQuery( this ).attr( 'id' ) == 'bulk-action-selector-top' ) {
     365                                jQuery( '#bulk-action-selector-bottom' ).val( jQuery( this ).val() );
     366                        } else if( jQuery( this ).attr( 'id' ) == 'bulk-action-selector-bottom' ) {
     367                                jQuery( '#bulk-action-selector-top' ).val( jQuery( this ).val() );
     368                        }
     369                });
     370        });
     371</script>
    361372<?php
    362373if ( $wp_list_table->has_items() )
    363374        $wp_list_table->inline_edit();