GRAYBYTE WORDPRESS FILE MANAGER6671

Server IP : 149.255.58.128 / Your IP : 216.73.216.79
System : Linux cloud516.thundercloud.uk 5.14.0-427.26.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 17 15:51:13 EDT 2024 x86_64
PHP Version : 8.2.28
Disable Function : allow_url_include, apache_child_terminate, apache_setenv, exec, passthru, pcntl_exec, posix_kill, posix_mkfifo, posix_getpwuid, posix_setpgid, posix_setsid, posix_setuid, posix_setgid, posix_seteuid, posix_setegid, posix_uname, proc_close, proc_get_status, proc_open, proc_terminate, shell_exec, show_source, system
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/wheelch2/mobilityscootereftalia.com/wp-admin/js/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/wheelch2/mobilityscootereftalia.com/wp-admin/js//site-health.js
/**
 * Interactions used by the Site Health modules in WordPress.
 *
 * @output wp-admin/js/site-health.js
 */

/* global ajaxurl, ClipboardJS, SiteHealth, wp */

jQuery( function( $ ) {

	var __ = wp.i18n.__,
		_n = wp.i18n._n,
		sprintf = wp.i18n.sprintf,
		clipboard = new ClipboardJS( '.site-health-copy-buttons .copy-button' ),
		isStatusTab = $( '.health-check-body.health-check-status-tab' ).length,
		isDebugTab = $( '.health-check-body.health-check-debug-tab' ).length,
		pathsSizesSection = $( '#health-check-accordion-block-wp-paths-sizes' ),
		menuCounterWrapper = $( '#adminmenu .site-health-counter' ),
		menuCounter = $( '#adminmenu .site-health-counter .count' ),
		successTimeout;

	// Debug information copy section.
	clipboard.on( 'success', function( e ) {
		var triggerElement = $( e.trigger ),
			successElement = $( '.success', triggerElement.closest( 'div' ) );

		// Clear the selection and move focus back to the trigger.
		e.clearSelection();

		// Show success visual feedback.
		clearTimeout( successTimeout );
		successElement.removeClass( 'hidden' );

		// Hide success visual feedback after 3 seconds since last success.
		successTimeout = setTimeout( function() {
			successElement.addClass( 'hidden' );
		}, 3000 );

		// Handle success audible feedback.
		wp.a11y.speak( __( 'Site information has been copied to your clipboard.' ) );
	} );

	// Accordion handling in various areas.
	$( '.health-check-accordion' ).on( 'click', '.health-check-accordion-trigger', function() {
		var isExpanded = ( 'true' === $( this ).attr( 'aria-expanded' ) );

		if ( isExpanded ) {
			$( this ).attr( 'aria-expanded', 'false' );
			$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', true );
		} else {
			$( this ).attr( 'aria-expanded', 'true' );
			$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', false );
		}
	} );

	// Site Health test handling.

	$( '.site-health-view-passed' ).on( 'click', function() {
		var goodIssuesWrapper = $( '#health-check-issues-good' );

		goodIssuesWrapper.toggleClass( 'hidden' );
		$( this ).attr( 'aria-expanded', ! goodIssuesWrapper.hasClass( 'hidden' ) );
	} );

	/**
	 * Validates the Site Health test result format.
	 *
	 * @since 5.6.0
	 *
	 * @param {Object} issue
	 *
	 * @return {boolean}
	 */
	function validateIssueData( issue ) {
		// Expected minimum format of a valid SiteHealth test response.
		var minimumExpected = {
				test: 'string',
				label: 'string',
				description: 'string'
			},
			passed = true,
			key, value, subKey, subValue;

		// If the issue passed is not an object, return a `false` state early.
		if ( 'object' !== typeof( issue ) ) {
			return false;
		}

		// Loop over expected data and match the data types.
		for ( key in minimumExpected ) {
			value = minimumExpected[ key ];

			if ( 'object' === typeof( value ) ) {
				for ( subKey in value ) {
					subValue = value[ subKey ];

					if ( 'undefined' === typeof( issue[ key ] ) ||
						'undefined' === typeof( issue[ key ][ subKey ] ) ||
						subValue !== typeof( issue[ key ][ subKey ] )
					) {
						passed = false;
					}
				}
			} else {
				if ( 'undefined' === typeof( issue[ key ] ) ||
					value !== typeof( issue[ key ] )
				) {
					passed = false;
				}
			}
		}

		return passed;
	}

	/**
	 * Appends a new issue to the issue list.
	 *
	 * @since 5.2.0
	 *
	 * @param {Object} issue The issue data.
	 */
	function appendIssue( issue ) {
		var template = wp.template( 'health-check-issue' ),
			issueWrapper = $( '#health-check-issues-' + issue.status ),
			heading,
			count;

		/*
		 * Validate the issue data format before using it.
		 * If the output is invalid, discard it.
		 */
		if ( ! validateIssueData( issue ) ) {
			return false;
		}

		SiteHealth.site_status.issues[ issue.status ]++;

		count = SiteHealth.site_status.issues[ issue.status ];

		// If no test name is supplied, append a placeholder for markup references.
		if ( typeof issue.test === 'undefined' ) {
			issue.test = issue.status + count;
		}

		if ( 'critical' === issue.status ) {
			heading = sprintf(
				_n( '%s critical issue', '%s critical issues', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		} else if ( 'recommended' === issue.status ) {
			heading = sprintf(
				_n( '%s recommended improvement', '%s recommended improvements', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		} else if ( 'good' === issue.status ) {
			heading = sprintf(
				_n( '%s item with no issues detected', '%s items with no issues detected', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		}

		if ( heading ) {
			$( '.site-health-issue-count-title', issueWrapper ).html( heading );
		}

		menuCounter.text( SiteHealth.site_status.issues.critical );

		if ( 0 < parseInt( SiteHealth.site_status.issues.critical, 0 ) ) {
			$( '#health-check-issues-critical' ).removeClass( 'hidden' );

			menuCounterWrapper.removeClass( 'count-0' );
		} else {
			menuCounterWrapper.addClass( 'count-0' );
		}
		if ( 0 < parseInt( SiteHealth.site_status.issues.recommended, 0 ) ) {
			$( '#health-check-issues-recommended' ).removeClass( 'hidden' );
		}

		$( '.issues', '#health-check-issues-' + issue.status ).append( template( issue ) );
	}

	/**
	 * Updates site health status indicator as asynchronous tests are run and returned.
	 *
	 * @since 5.2.0
	 */
	function recalculateProgression() {
		var r, c, pct;
		var $progress = $( '.site-health-progress' );
		var $wrapper = $progress.closest( '.site-health-progress-wrapper' );
		var $progressLabel = $( '.site-health-progress-label', $wrapper );
		var $circle = $( '.site-health-progress svg #bar' );
		var totalTests = parseInt( SiteHealth.site_status.issues.good, 0 ) +
			parseInt( SiteHealth.site_status.issues.recommended, 0 ) +
			( parseInt( SiteHealth.site_status.issues.critical, 0 ) * 1.5 );
		var failedTests = ( parseInt( SiteHealth.site_status.issues.recommended, 0 ) * 0.5 ) +
			( parseInt( SiteHealth.site_status.issues.critical, 0 ) * 1.5 );
		var val = 100 - Math.ceil( ( failedTests / totalTests ) * 100 );

		if ( 0 === totalTests ) {
			$progress.addClass( 'hidden' );
			return;
		}

		$wrapper.removeClass( 'loading' );

		r = $circle.attr( 'r' );
		c = Math.PI * ( r * 2 );

		if ( 0 > val ) {
			val = 0;
		}
		if ( 100 < val ) {
			val = 100;
		}

		pct = ( ( 100 - val ) / 100 ) * c + 'px';

		$circle.css( { strokeDashoffset: pct } );

		if ( 80 <= val && 0 === parseInt( SiteHealth.site_status.issues.critical, 0 ) ) {
			$wrapper.addClass( 'green' ).removeClass( 'orange' );

			$progressLabel.text( __( 'Good' ) );
			announceTestsProgression( 'good' );
		} else {
			$wrapper.addClass( 'orange' ).removeClass( 'green' );

			$progressLabel.text( __( 'Should be improved' ) );
			announceTestsProgression( 'improvable' );
		}

		if ( isStatusTab ) {
			$.post(
				ajaxurl,
				{
					'action': 'health-check-site-status-result',
					'_wpnonce': SiteHealth.nonce.site_status_result,
					'counts': SiteHealth.site_status.issues
				}
			);

			if ( 100 === val ) {
				$( '.site-status-all-clear' ).removeClass( 'hide' );
				$( '.site-status-has-issues' ).addClass( 'hide' );
			}
		}
	}

	/**
	 * Queues the next asynchronous test when we're ready to run it.
	 *
	 * @since 5.2.0
	 */
	function maybeRunNextAsyncTest() {
		var doCalculation = true;

		if ( 1 <= SiteHealth.site_status.async.length ) {
			$.each( SiteHealth.site_status.async, function() {
				var data = {
					'action': 'health-check-' + this.test.replace( '_', '-' ),
					'_wpnonce': SiteHealth.nonce.site_status
				};

				if ( this.completed ) {
					return true;
				}

				doCalculation = false;

				this.completed = true;

				if ( 'undefined' !== typeof( this.has_rest ) && this.has_rest ) {
					wp.apiRequest( {
						url: wp.url.addQueryArgs( this.test, { _locale: 'user' } ),
						headers: this.headers
					} )
						.done( function( response ) {
							/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
							appendIssue( wp.hooks.applyFilters( 'site_status_test_result', response ) );
						} )
						.fail( function( response ) {
							var description;

							if ( 'undefined' !== typeof( response.responseJSON ) && 'undefined' !== typeof( response.responseJSON.message ) ) {
								description = response.responseJSON.message;
							} else {
								description = __( 'No details available' );
							}

							addFailedSiteHealthCheckNotice( this.url, description );
						} )
						.always( function() {
							maybeRunNextAsyncTest();
						} );
				} else {
					$.post(
						ajaxurl,
						data
					).done( function( response ) {
						/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
						appendIssue( wp.hooks.applyFilters( 'site_status_test_result', response.data ) );
					} ).fail( function( response ) {
						var description;

						if ( 'undefined' !== typeof( response.responseJSON ) && 'undefined' !== typeof( response.responseJSON.message ) ) {
							description = response.responseJSON.message;
						} else {
							description = __( 'No details available' );
						}

						addFailedSiteHealthCheckNotice( this.url, description );
					} ).always( function() {
						maybeRunNextAsyncTest();
					} );
				}

				return false;
			} );
		}

		if ( doCalculation ) {
			recalculateProgression();
		}
	}

	/**
	 * Add the details of a failed asynchronous test to the list of test results.
	 *
	 * @since 5.6.0
	 */
	function addFailedSiteHealthCheckNotice( url, description ) {
		var issue;

		issue = {
			'status': 'recommended',
			'label': __( 'A test is unavailable' ),
			'badge': {
				'color': 'red',
				'label': __( 'Unavailable' )
			},
			'description': '<p>' + url + '</p><p>' + description + '</p>',
			'actions': ''
		};

		/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
		appendIssue( wp.hooks.applyFilters( 'site_status_test_result', issue ) );
	}

	if ( 'undefined' !== typeof SiteHealth ) {
		if ( 0 === SiteHealth.site_status.direct.length && 0 === SiteHealth.site_status.async.length ) {
			recalculateProgression();
		} else {
			SiteHealth.site_status.issues = {
				'good': 0,
				'recommended': 0,
				'critical': 0
			};
		}

		if ( 0 < SiteHealth.site_status.direct.length ) {
			$.each( SiteHealth.site_status.direct, function() {
				appendIssue( this );
			} );
		}

		if ( 0 < SiteHealth.site_status.async.length ) {
			maybeRunNextAsyncTest();
		} else {
			recalculateProgression();
		}
	}

	function getDirectorySizes() {
		var timestamp = ( new Date().getTime() );

		// After 3 seconds announce that we're still waiting for directory sizes.
		var timeout = window.setTimeout( function() {
			announceTestsProgression( 'waiting-for-directory-sizes' );
		}, 3000 );

		wp.apiRequest( {
			path: '/wp-site-health/v1/directory-sizes'
		} ).done( function( response ) {
			updateDirSizes( response || {} );
		} ).always( function() {
			var delay = ( new Date().getTime() ) - timestamp;

			$( '.health-check-wp-paths-sizes.spinner' ).css( 'visibility', 'hidden' );

			if ( delay > 3000 ) {
				/*
				 * We have announced that we're waiting.
				 * Announce that we're ready after giving at least 3 seconds
				 * for the first announcement to be read out, or the two may collide.
				 */
				if ( delay > 6000 ) {
					delay = 0;
				} else {
					delay = 6500 - delay;
				}

				window.setTimeout( function() {
					recalculateProgression();
				}, delay );
			} else {
				// Cancel the announcement.
				window.clearTimeout( timeout );
			}

			$( document ).trigger( 'site-health-info-dirsizes-done' );
		} );
	}

	function updateDirSizes( data ) {
		var copyButton = $( 'button.button.copy-button' );
		var clipboardText = copyButton.attr( 'data-clipboard-text' );

		$.each( data, function( name, value ) {
			var text = value.debug || value.size;

			if ( typeof text !== 'undefined' ) {
				clipboardText = clipboardText.replace( name + ': loading...', name + ': ' + text );
			}
		} );

		copyButton.attr( 'data-clipboard-text', clipboardText );

		pathsSizesSection.find( 'td[class]' ).each( function( i, element ) {
			var td = $( element );
			var name = td.attr( 'class' );

			if ( data.hasOwnProperty( name ) && data[ name ].size ) {
				td.text( data[ name ].size );
			}
		} );
	}

	if ( isDebugTab ) {
		if ( pathsSizesSection.length ) {
			getDirectorySizes();
		} else {
			recalculateProgression();
		}
	}

	// Trigger a class toggle when the extended menu button is clicked.
	$( '.health-check-offscreen-nav-wrapper' ).on( 'click', function() {
		$( this ).toggleClass( 'visible' );
	} );

	/**
	 * Announces to assistive technologies the tests progression status.
	 *
	 * @since 6.4.0
	 *
	 * @param {string} type The type of message to be announced.
	 *
	 * @return {void}
	 */
	function announceTestsProgression( type ) {
		// Only announce the messages in the Site Health pages.
		if ( 'site-health' !== SiteHealth.screen ) {
			return;
		}

		switch ( type ) {
			case 'good':
				wp.a11y.speak( __( 'All site health tests have finished running. Your site is looking good.' ) );
				break;
			case 'improvable':
				wp.a11y.speak( __( 'All site health tests have finished running. There are items that should be addressed.' ) );
				break;
			case 'waiting-for-directory-sizes':
				wp.a11y.speak( __( 'Running additional tests... please wait.' ) );
				break;
			default:
				return;
		}
	}
} );

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 20 2025 11:42:25
1032 / wheelch2
0755
js
--
October 19 2024 00:37:30
1032 / wheelch2
0755
widgets
--
October 16 2024 01:01:17
1032 / wheelch2
0755
.htaccess
0 KB
March 26 2025 13:57:35
1032 / wheelch2
0444
accordion.js
2.864 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
accordion.min.js
0.74 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
application-passwords.js
6.244 KB
September 17 2023 22:51:24
1032 / wheelch2
0644
application-passwords.min.js
2.953 KB
September 17 2023 22:51:24
1032 / wheelch2
0644
auth-app.js
5.66 KB
February 23 2021 19:45:04
1032 / wheelch2
0644
auth-app.min.js
2.035 KB
April 08 2022 20:07:18
1032 / wheelch2
0644
code-editor.js
11.316 KB
July 27 2020 23:35:02
1032 / wheelch2
0644
code-editor.min.js
3.011 KB
February 02 2023 16:36:32
1032 / wheelch2
0644
color-picker.js
9.539 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
color-picker.min.js
3.404 KB
April 08 2022 20:07:18
1032 / wheelch2
0644
comment.js
2.851 KB
February 11 2024 19:14:19
1032 / wheelch2
0644
comment.min.js
1.284 KB
April 08 2022 20:07:18
1032 / wheelch2
0644
common.js
61.15 KB
May 01 2025 03:37:15
1032 / wheelch2
0644
common.min.js
23.121 KB
May 01 2025 03:37:15
1032 / wheelch2
0644
custom-background.js
3.354 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
custom-background.min.js
1.178 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
custom-header.js
1.976 KB
February 23 2021 19:45:04
1032 / wheelch2
0644
customize-controls.js
287.36 KB
February 12 2025 04:39:10
1032 / wheelch2
0644
customize-controls.min.js
109.14 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
customize-nav-menus.js
110.925 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
customize-nav-menus.min.js
46.89 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
customize-widgets.js
70.046 KB
July 16 2024 17:39:08
1032 / wheelch2
0644
customize-widgets.min.js
27.407 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
dashboard.js
27.018 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
dashboard.min.js
8.654 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
edit-comments.js
37.115 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
edit-comments.min.js
15.125 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
editor-expand.js
41.607 KB
July 16 2024 17:39:08
1032 / wheelch2
0644
editor-expand.min.js
13.136 KB
February 02 2023 16:36:32
1032 / wheelch2
0644
editor.js
43.98 KB
May 01 2025 03:37:15
1032 / wheelch2
0644
editor.min.js
12.76 KB
May 01 2025 03:37:15
1032 / wheelch2
0644
farbtastic.js
7.665 KB
July 17 2023 22:03:26
1032 / wheelch2
0644
gallery.js
5.413 KB
October 09 2023 21:31:27
1032 / wheelch2
0644
gallery.min.js
3.653 KB
October 09 2023 21:31:27
1032 / wheelch2
0644
image-edit.js
39.977 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
image-edit.min.js
15.151 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
inline-edit-post.js
20.166 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
inline-edit-post.min.js
9.413 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
inline-edit-tax.js
7.614 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
inline-edit-tax.min.js
2.927 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
iris.min.js
23.089 KB
November 03 2021 19:40:00
1032 / wheelch2
0644
language-chooser.js
0.869 KB
February 23 2021 19:45:04
1032 / wheelch2
0644
language-chooser.min.js
0.413 KB
February 23 2021 19:45:04
1032 / wheelch2
0644
link.js
3.894 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
link.min.js
1.701 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
media-gallery.js
1.272 KB
February 23 2021 19:45:04
1032 / wheelch2
0644
media-gallery.min.js
0.597 KB
April 08 2022 20:07:18
1032 / wheelch2
0644
media-upload.js
3.384 KB
January 22 2021 12:32:03
1032 / wheelch2
0644
media-upload.min.js
1.125 KB
February 02 2023 16:36:32
1032 / wheelch2
0644
media.js
6.606 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
media.min.js
2.382 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
nav-menu.js
60.443 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
nav-menu.min.js
29.771 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
password-strength-meter.js
4.137 KB
January 22 2021 12:32:03
1032 / wheelch2
0644
password-strength-meter.min.js
1.097 KB
January 22 2021 12:32:03
1032 / wheelch2
0644
password-toggle.js
1.308 KB
June 23 2023 23:09:29
1032 / wheelch2
0644
password-toggle.min.js
0.827 KB
June 23 2023 23:09:29
1032 / wheelch2
0644
plugin-install.js
6.92 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
plugin-install.min.js
2.347 KB
February 02 2023 16:36:32
1032 / wheelch2
0644
post.js
38.679 KB
February 12 2025 04:39:10
1032 / wheelch2
0644
post.min.js
18.403 KB
February 12 2025 04:39:10
1032 / wheelch2
0644
postbox.js
18.493 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
postbox.min.js
6.603 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
privacy-tools.js
10.667 KB
July 16 2024 17:39:08
1032 / wheelch2
0644
privacy-tools.min.js
5.033 KB
July 16 2024 17:39:08
1032 / wheelch2
0644
revisions.js
33.915 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
revisions.min.js
17.97 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
set-post-thumbnail.js
0.855 KB
July 07 2020 18:55:04
1032 / wheelch2
0644
set-post-thumbnail.min.js
0.605 KB
July 07 2020 18:55:04
1032 / wheelch2
0644
site-health.js
13.149 KB
December 28 2023 15:27:15
1032 / wheelch2
0644
site-health.min.js
6.135 KB
December 28 2023 15:27:15
1032 / wheelch2
0644
site-icon.js
6.097 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
site-icon.min.js
2.201 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
svg-painter.js
3.203 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
svg-painter.min.js
1.53 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
tags-box.js
10.879 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
tags-box.min.js
3.005 KB
February 02 2023 16:36:32
1032 / wheelch2
0644
tags-suggest.js
5.636 KB
February 18 2024 22:16:14
1032 / wheelch2
0644
tags-suggest.min.js
2.216 KB
February 18 2024 22:16:14
1032 / wheelch2
0644
tags.js
4.851 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
tags.min.js
2.042 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
theme-plugin-editor.js
24.766 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
theme-plugin-editor.min.js
11.435 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
theme.js
54.667 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
theme.min.js
26.417 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
updates.js
109.335 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
updates.min.js
47.272 KB
April 16 2025 03:38:58
1032 / wheelch2
0644
user-profile.js
14.995 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
user-profile.min.js
6.701 KB
November 13 2024 04:45:47
1032 / wheelch2
0644
user-suggest.js
2.247 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
user-suggest.min.js
0.66 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
widgets.js
22.557 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
widgets.min.js
12.313 KB
February 02 2023 16:36:32
1032 / wheelch2
0644
word-count.js
7.516 KB
July 27 2020 23:35:02
1032 / wheelch2
0644
word-count.min.js
1.494 KB
February 02 2023 16:36:32
1032 / wheelch2
0644
xfn.js
0.723 KB
March 18 2021 19:01:03
1032 / wheelch2
0644
xfn.min.js
0.447 KB
March 18 2021 19:01:03
1032 / wheelch2
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF