PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
plugins
/
theme-my-login
/
assets
/
scripts
( function ( $ ) { $( initFocus ); function initFocus() { var userLogin, key; if ( ! themeMyLogin.action ) { return; } userLogin = $( '#user_login' ); switch ( themeMyLogin.action ) { case 'activate' : key = $( '#key' ); if ( key.length ) { key.focus(); } break; case 'lostpassword' : case 'retrievepassword' : case 'register' : userLogin.focus(); break; case 'resetpass' : case 'rp' : $( '#pass1' ).focus(); break; case 'login' : if ( -1 != themeMyLogin.errors.indexOf( 'invalid_username' ) ) { userLogin.val( '' ); } if ( userLogin.val() ) { $( '#user_pass' ).focus(); } else { userLogin.focus(); } break; } } } )( jQuery ); ( function( $ ) { function checkPasswordStrength() { var pass1 = $( '#pass1' ).val(), result = $( '#pass-strength-result' ), strength; result.removeClass('short bad good strong'); if ( ! pass1 ) { result.html( ' ' ); return; } strength = wp.passwordStrength.meter( pass1, wp.passwordStrength.userInputBlacklist(), pass1 ); switch ( strength ) { case -1: result.addClass( 'bad' ).html( pwsL10n.unknown ); break; case 2: result.addClass( 'bad' ).html( pwsL10n.bad ); break; case 3: result.addClass( 'good' ).html( pwsL10n.good ); break; case 4: result.addClass( 'strong' ).html( pwsL10n.strong ); break; case 5: result.addClass( 'short' ).html( pwsL10n.mismatch ); break; default: result.addClass( 'short' ).html( pwsL10n['short'] ); } } $( document ).ready( function() { $( '#pass1' ).val( '' ).on( 'keyup paste', checkPasswordStrength ); } ); } )( jQuery );
[+]
..
[-] theme-my-login.min.js
[edit]
[-] theme-my-login.js
[edit]