Make WordPress Core

Ticket #40966: 40966.2.diff

File 40966.2.diff, 900 bytes (added by MarcGuay, 7 years ago)

Remove extra line

  • src/wp-admin/js/updates.js

     
    20532053                        wp.updates.maybeRequestFilesystemCredentials( event );
    20542054
    20552055                        event.preventDefault();
     2056                       
     2057                        // Disable the Apply button while working
     2058                        $(this).prop( 'disabled', true );
    20562059
    20572060                        // Un-check the bulk checkboxes.
    20582061                        $bulkActionForm.find( '.manage-column [type="checkbox"]' ).prop( 'checked', false );
     
    21212124                                if ( error > 0 && ! wp.updates.queue.length ) {
    21222125                                        $( 'html, body' ).animate( { scrollTop: 0 } );
    21232126                                }
     2127                               
     2128                                // Re-enable the Apply button after displaying update notifications
     2129                                $bulkActionForm.find( 'input[type="submit"]' ).prop( 'disabled', false );
    21242130                        } );
    21252131
    21262132                        // Reset admin notice template after #bulk-action-notice was added.