Make WordPress Core

Ticket #26016: 26016.4.diff

File 26016.4.diff, 3.6 KB (added by dougwollison, 11 years ago)

Just the jshint fixes.

  • user-profile.js

     
     1/* global ajaxurl, pwsL10n, svgPainter */
     2
    13(function($){
    24
    35        function check_pass_strength() {
    4                 var pass1 = $('#pass1').val(), user = $('#user_login').val(), pass2 = $('#pass2').val(), strength;
     6                var pass1 = $('#pass1').val(), pass2 = $('#pass2').val(), strength;
    57
    68                $('#pass-strength-result').removeClass('short bad good strong');
    79                if ( ! pass1 ) {
     
    1315
    1416                switch ( strength ) {
    1517                        case 2:
    16                                 $('#pass-strength-result').addClass('bad').html( pwsL10n['bad'] );
     18                                $('#pass-strength-result').addClass('bad').html( pwsL10n.bad );
    1719                                break;
    1820                        case 3:
    19                                 $('#pass-strength-result').addClass('good').html( pwsL10n['good'] );
     21                                $('#pass-strength-result').addClass('good').html( pwsL10n.good );
    2022                                break;
    2123                        case 4:
    22                                 $('#pass-strength-result').addClass('strong').html( pwsL10n['strong'] );
     24                                $('#pass-strength-result').addClass('strong').html( pwsL10n.strong );
    2325                                break;
    2426                        case 5:
    25                                 $('#pass-strength-result').addClass('short').html( pwsL10n['mismatch'] );
     27                                $('#pass-strength-result').addClass('short').html( pwsL10n.mismatch );
    2628                                break;
    2729                        default:
    2830                                $('#pass-strength-result').addClass('short').html( pwsL10n['short'] );
     
    3032        }
    3133
    3234        $(document).ready( function() {
    33                 var select = $('#display_name');
     35                var select = $('#display_name'),
     36                        $colorpicker,
     37                        $stylesheet,
     38                        user_id,
     39                        current_user_id;
    3440
    3541                $('#pass1').val('').keyup( check_pass_strength );
    3642                $('#pass2').val('').keyup( check_pass_strength );
     
    5056                                        };
    5157
    5258                                if ( inputs.display_firstname && inputs.display_lastname ) {
    53                                         inputs['display_firstlast'] = inputs.display_firstname + ' ' + inputs.display_lastname;
    54                                         inputs['display_lastfirst'] = inputs.display_lastname + ' ' + inputs.display_firstname;
     59                                        inputs.display_firstlast = inputs.display_firstname + ' ' + inputs.display_lastname;
     60                                        inputs.display_lastfirst = inputs.display_lastname + ' ' + inputs.display_firstname;
    5561                                }
    5662
    5763                                $.each( $('option', select), function( i, el ){
     
    5965                                });
    6066
    6167                                $.each(inputs, function( id, value ) {
    62                                         if ( ! value )
     68                                        if ( ! value ) {
    6369                                                return;
     70                                        }
    6471
    6572                                        var val = value.replace(/<\/?[a-z][^>]*>/gi, '');
    6673
    67                                         if ( inputs[id].length && $.inArray( val, dub ) == -1 ) {
     74                                        if ( inputs[id].length && $.inArray( val, dub ) === -1 ) {
    6875                                                dub.push(val);
    6976                                                $('<option />', {
    7077                                                        'text': val
     
    7481                        });
    7582                }
    7683
    77                 var $colorpicker = $( '#color-picker' ),
    78                         $stylesheet = $( '#colors-css' ),
    79                         user_id = $( 'input#user_id' ).val(),
    80                         current_user_id = $( 'input[name="checkuser_id"]' ).val();
     84                $colorpicker = $( '#color-picker' );
     85                $stylesheet = $( '#colors-css' );
     86                user_id = $( 'input#user_id' ).val();
     87                current_user_id = $( 'input[name="checkuser_id"]' ).val();
    8188
    8289                // dropdown toggle
    8390                $colorpicker.on( 'click', '.dropdown-current', function() {
     
    8996                        var color_scheme = $( this ).children( 'input[name="admin_color"]' ).val();
    9097
    9198                        // update selected
    92                         $( this ).siblings( '.selected' ).removeClass( 'selected' )
     99                        $( this ).siblings( '.selected' ).removeClass( 'selected' );
    93100                        $( this ).addClass( 'selected' );
    94101                        $( this ).find( 'input' ).prop( 'checked', true );
    95102
     
    99106                        $colorpicker.toggleClass( 'picker-expanded' );
    100107
    101108                        // preview/save color scheme
    102                         if ( user_id == current_user_id ) {
     109                        if ( user_id === current_user_id ) {
    103110
    104111                                // repaint icons
    105112                                $stylesheet.attr( 'href', $( this ).children( '.css_url' ).val() );