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> |