SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > jetpack > modules > widgets > >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/jetpack/modules/widgets//

NameTypeSizeLast ModifiedActions
authors Directory - -
contact-info Directory - -
eu-cookie-law Directory - -
facebook-likebox Directory - -
flickr Directory - -
gallery Directory - -
goodreads Directory - -
google-translate Directory - -
image-widget Directory - -
instagram Directory - -
internet-defense-league Directory - -
milestone Directory - -
my-community Directory - -
simple-payments Directory - -
social-icons Directory - -
social-media-icons Directory - -
top-posts Directory - -
wordpress-post-widget Directory - -
authors.php File 9236 bytes May 15 2025 20:05:26.
blog-stats.php File 6264 bytes May 15 2025 20:05:26.
class-jetpack-eu-cookie-law-widget.php File 10834 bytes May 15 2025 20:05:26.
class-jetpack-instagram-widget.php File 24647 bytes May 15 2025 20:05:26.
contact-info.php File 18419 bytes May 15 2025 20:05:26.
customizer-controls.css File 166 bytes April 14 2025 18:35:52.
customizer-utils.js File 4154 bytes December 16 2024 19:21:56.
error_log File 327 bytes August 01 2025 08:47:48.
facebook-likebox.php File 15672 bytes May 15 2025 20:05:26.
flickr.php File 8540 bytes May 15 2025 20:05:26.
gallery.php File 16417 bytes May 15 2025 20:05:26.
goodreads.php File 8947 bytes May 15 2025 20:05:26.
google-translate.php File 6628 bytes May 15 2025 20:05:26.
gravatar-profile.css File 631 bytes April 07 2025 21:33:38.
gravatar-profile.php File 16717 bytes May 15 2025 20:05:26.
image-widget.php File 12404 bytes May 15 2025 20:05:26.
internet-defense-league.php File 5811 bytes May 15 2025 20:05:26.
mailchimp.php File 4398 bytes May 15 2025 20:05:26.
milestone.php File 346 bytes February 23 2021 21:08:42.
my-community.php File 11193 bytes January 20 2025 22:16:12.
rsslinks-widget.php File 10859 bytes May 22 2023 19:04:58.
simple-payments.php File 22465 bytes May 15 2025 20:05:26.
social-icons.php File 22657 bytes August 01 2025 08:47:45.
social-media-icons.php File 10980 bytes May 15 2025 20:05:26.
top-posts.php File 28318 bytes May 15 2025 20:05:26.
twitter-timeline-admin.js File 2234 bytes December 16 2024 19:21:56.
twitter-timeline.php File 20528 bytes May 15 2025 20:05:26.
upcoming-events.php File 6907 bytes May 15 2025 20:05:26.
wordpress-post-widget.php File 3799 bytes January 20 2025 22:16:12.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/jetpack/modules/widgets///customizer-utils.js

/* global gapi, FB, twttr, PaypalExpressCheckout */

/**
 * Utilities to work with widgets in Customizer.
 */

/**
 * Checks whether this Customizer supports partial widget refresh.
 * @return {boolean}
 */
wp.customizerHasPartialWidgetRefresh = function () {
	return (
		'object' === typeof wp &&
		'function' === typeof wp.customize &&
		'object' === typeof wp.customize.selectiveRefresh &&
		'object' === typeof wp.customize.widgetsPreview &&
		'function' === typeof wp.customize.widgetsPreview.WidgetPartial
	);
};

/**
 * Verifies that the placed widget ID contains the widget name.
 * @param {object} placement
 * @param {string} widgetName
 * @return {*|boolean}
 */
wp.isJetpackWidgetPlaced = function ( placement, widgetName ) {
	return placement.partial.widgetId && 0 === placement.partial.widgetId.indexOf( widgetName );
};

/**
 * Bind events for selective refresh in Customizer.
 */
( function ( $ ) {
	$( document ).ready( function () {
		if ( wp && wp.customize && wp.customizerHasPartialWidgetRefresh() ) {
			// Refresh widget contents when a partial is rendered.
			wp.customize.selectiveRefresh.bind( 'partial-content-rendered', function ( placement ) {
				if ( placement.container ) {
					// Refresh Google+
					if (
						wp.isJetpackWidgetPlaced( placement, 'googleplus-badge' ) &&
						'object' === typeof gapi &&
						gapi.person &&
						'function' === typeof gapi.person.go
					) {
						gapi.person.go( placement.container[ 0 ] );
					}

					// Refresh Facebook XFBML
					else if (
						wp.isJetpackWidgetPlaced( placement, 'facebook-likebox' ) &&
						'object' === typeof FB &&
						'object' === typeof FB.XFBML &&
						'function' === typeof FB.XFBML.parse
					) {
						FB.XFBML.parse( placement.container[ 0 ], function () {
							var $fbContainer = $( placement.container[ 0 ] ).find( '.fb_iframe_widget' ),
								fbWidth = $fbContainer.data( 'width' ),
								fbHeight = $fbContainer.data( 'height' );
							$fbContainer.find( 'span' ).css( { width: fbWidth, height: fbHeight } );
							setTimeout( function () {
								$fbContainer
									.find( 'iframe' )
									.css( { width: fbWidth, height: fbHeight, position: 'relative' } );
							}, 1 );
						} );
					}

					// Refresh Twitter
					else if (
						wp.isJetpackWidgetPlaced( placement, 'twitter_timeline' ) &&
						'object' === typeof twttr &&
						'object' === typeof twttr.widgets &&
						'function' === typeof twttr.widgets.load
					) {
						twttr.widgets.load( placement.container[ 0 ] );
					} else if ( wp.isJetpackWidgetPlaced( placement, 'eu_cookie_law_widget' ) ) {
						// Refresh EU Cookie Law
						if ( $( '#eu-cookie-law' ).hasClass( 'top' ) ) {
							$( '.widget_eu_cookie_law_widget' ).addClass( 'top' );
						} else {
							$( '.widget_eu_cookie_law_widget' ).removeClass( 'top' );
						}
						placement.container.fadeIn();
					} else if ( wp.isJetpackWidgetPlaced( placement, 'jetpack_simple_payments_widget' ) ) {
						// Refresh Simple Payments Widget
						try {
							var buttonId = $( '.jetpack-simple-payments-button', placement.container )
								.attr( 'id' )
								.replace( '_button', '' );
							PaypalExpressCheckout.renderButton( null, null, buttonId, null );
						} catch {
							// PaypalExpressCheckout may fail.
							// For the same usage, see also:
							// https://github.com/Automattic/jetpack/blob/6c1971e6bed7d3df793392a7a58ffe0afaeeb5fe/modules/simple-payments/simple-payments.php#L111
						}
					}
				}
			} );

			// Refresh widgets when they're moved.
			wp.customize.selectiveRefresh.bind( 'partial-content-moved', function ( placement ) {
				if ( placement.container ) {
					// Refresh Twitter timeline iframe, since it has to be re-built.
					if (
						wp.isJetpackWidgetPlaced( placement, 'twitter_timeline' ) &&
						placement.container.find( 'iframe.twitter-timeline:not([src]):first' ).length
					) {
						placement.partial.refresh();
					} else if ( wp.isJetpackWidgetPlaced( placement, 'jetpack_simple_payments_widget' ) ) {
						// Refresh Simple Payments Widget
						placement.partial.refresh();
					}
				}
			} );
		}
	} );
} )( jQuery );

SILENT KILLER Tool