Make WordPress Core

Ticket #33778: 33778.patch

File 33778.patch, 1006 bytes (added by umesh.nevase, 9 years ago)

patch file for the issue, I've made changes in user-profile.js

  • user-profile.js

     
    5757                        } );
    5858
    5959                $pass1.after( $pass1Text );
     60               
     61                $pass1Row.find('th').children('label').attr({'for':'pass1-text'});
    6062
    6163                if ( 1 === parseInt( $pass1.data( 'reveal' ), 10 ) ) {
    6264                        generatePassword();
     
    104106                                        .find( '.dashicons' )
    105107                                                .removeClass('dashicons-visibility')
    106108                                                .addClass('dashicons-hidden');
    107 
     109                                       
    108110                                $pass1Text.focus();
     111                               
     112                                $pass1Row.find('th').children('label').attr({'for':'pass1-text'});
    109113
    110114                                if ( ! _.isUndefined( $pass1Text[0].setSelectionRange ) ) {
    111115                                        $pass1Text[0].setSelectionRange( 0, 100 );
     
    125129                                                .addClass('dashicons-visibility');
    126130
    127131                                $pass1.focus();
     132                               
     133                                $pass1Row.find('th').children('label').attr({'for':'pass1'});
    128134
    129135                                if ( ! _.isUndefined( $pass1[0].setSelectionRange ) ) {
    130136                                        $pass1[0].setSelectionRange( 0, 100 );