$26 GRAYBYTE WORDPRESS FILE MANAGER $96

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.15.130 | ADMIN IP 216.73.217.21
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/bravetechrwanda/dantho.rw/wp-admin/js/

HOME
Current File : /home/bravetechrwanda/dantho.rw/wp-admin/js//code-editor.js
/**
 * @output wp-admin/js/code-editor.js
 */

/* global console */

/* eslint-env es2020 */

if ( 'undefined' === typeof window.wp ) {
	/**
	 * @namespace wp
	 */
	window.wp = {};
}
if ( 'undefined' === typeof window.wp.codeEditor ) {
	/**
	 * @namespace wp.codeEditor
	 */
	window.wp.codeEditor = {};
}

/**
 * @typedef {object} CodeMirrorState
 * @property {boolean} [completionActive] - Whether completion is active.
 * @property {boolean} [focused] - Whether the editor is focused.
 */

/**
 * @typedef {import('codemirror').EditorFromTextArea & {
 *   options: import('codemirror').EditorConfiguration,
 *   performLint?: () => void,
 *   showHint?: (options: import('codemirror').ShowHintOptions) => void,
 *   state: CodeMirrorState
 * }} CodeMirrorEditor
 */

/**
 * @typedef {object} LintAnnotation
 * @property {string} message - Message.
 * @property {'error'|'warning'} severity - Severity.
 * @property {import('codemirror').Position} from - From position.
 * @property {import('codemirror').Position} to - To position.
 */

/**
 * @typedef {object} CodeMirrorTokenState
 * @property {object} [htmlState] - HTML state.
 * @property {string} [htmlState.tagName] - Tag name.
 * @property {CodeMirrorTokenState} [curState] - Current state.
 */

/**
 * @typedef {import('codemirror').EditorConfiguration & {
 *   lint?: boolean | CombinedLintOptions,
 *   autoCloseBrackets?: boolean,
 *   matchBrackets?: boolean,
 *   continueComments?: boolean,
 *   styleActiveLine?: boolean
 * }} CodeMirrorSettings
 */

/**
 * @typedef {object} CSSLintRules
 * @property {boolean} [errors] - Errors.
 * @property {boolean} [box-model] - Box model rules.
 * @property {boolean} [display-property-grouping] - Display property grouping rules.
 * @property {boolean} [duplicate-properties] - Duplicate properties rules.
 * @property {boolean} [known-properties] - Known properties rules.
 * @property {boolean} [outline-none] - Outline none rules.
 */

/**
 * @typedef {object} JSHintRules
 * @property {number} [esversion] - ECMAScript version.
 * @property {boolean} [module] - Whether to use modules.
 * @property {boolean} [boss] - Whether to allow assignments in control expressions.
 * @property {boolean} [curly] - Whether to require curly braces.
 * @property {boolean} [eqeqeq] - Whether to require === and !==.
 * @property {boolean} [eqnull] - Whether to allow == null.
 * @property {boolean} [expr] - Whether to allow expressions.
 * @property {boolean} [immed] - Whether to require immediate function invocation.
 * @property {boolean} [noarg] - Whether to prohibit arguments.caller/callee.
 * @property {boolean} [nonbsp] - Whether to prohibit non-breaking spaces.
 * @property {string} [quotmark] - Quote mark preference.
 * @property {boolean} [undef] - Whether to prohibit undefined variables.
 * @property {boolean} [unused] - Whether to prohibit unused variables.
 * @property {boolean} [browser] - Whether to enable browser globals.
 * @property {Record<string, boolean>} [globals] - Global variables.
 */

/**
 * @typedef {object} HTMLHintRules
 * @property {boolean} [tagname-lowercase] - Tag name lowercase rules.
 * @property {boolean} [attr-lowercase] - Attribute lowercase rules.
 * @property {boolean} [attr-value-double-quotes] - Attribute value double quotes rules.
 * @property {boolean} [doctype-first] - Doctype first rules.
 * @property {boolean} [tag-pair] - Tag pair rules.
 * @property {boolean} [spec-char-escape] - Spec char escape rules.
 * @property {boolean} [id-unique] - ID unique rules.
 * @property {boolean} [src-not-empty] - Src not empty rules.
 * @property {boolean} [attr-no-duplication] - Attribute no duplication rules.
 * @property {boolean} [alt-require] - Alt require rules.
 * @property {string} [space-tab-mixed-disabled] - Space tab mixed disabled rules.
 * @property {boolean} [attr-unsafe-chars] - Attribute unsafe chars rules.
 * @property {JSHintRules} [jshint] - JSHint rules.
 * @property {CSSLintRules} [csslint] - CSSLint rules.
 */

/**
 * Settings for the code editor.
 *
 * @typedef {object} CodeEditorSettings
 *
 * @property {CodeMirrorSettings} [codemirror] - CodeMirror settings.
 * @property {CSSLintRules} [csslint] - CSSLint rules.
 * @property {JSHintRules} [jshint] - JSHint rules.
 * @property {HTMLHintRules} [htmlhint] - HTMLHint rules.
 *
 * @property {(codemirror: CodeMirrorEditor, event: KeyboardEvent|JQuery.KeyDownEvent) => void} [onTabNext] - Callback to handle tabbing to the next tabbable element.
 * @property {(codemirror: CodeMirrorEditor, event: KeyboardEvent|JQuery.KeyDownEvent) => void} [onTabPrevious] - Callback to handle tabbing to the previous tabbable element.
 * @property {(errorAnnotations: LintAnnotation[], annotations: LintAnnotation[], annotationsSorted: LintAnnotation[], cm: CodeMirrorEditor) => void} [onChangeLintingErrors] - Callback for when the linting errors have changed.
 * @property {(errorAnnotations: LintAnnotation[], editor: CodeMirrorEditor) => void} [onUpdateErrorNotice] - Callback for when error notice should be displayed.
 */

/**
 * @typedef {import('codemirror/addon/lint/lint').LintStateOptions<Record<string, unknown>> & JSHintRules & CSSLintRules & { rules?: HTMLHintRules }} CombinedLintOptions
 */

/**
 * @typedef {object} CodeEditorInstance
 * @property {CodeEditorSettings} settings - The code editor settings.
 * @property {CodeMirrorEditor} codemirror - The CodeMirror instance.
 * @property {() => void} updateErrorNotice - Force update the error notice.
 */

/**
 * @typedef {object} WpCodeEditor
 * @property {CodeEditorSettings} defaultSettings - Default settings.
 * @property {(textarea: string|JQuery|Element, settings?: CodeEditorSettings) => CodeEditorInstance} initialize - Initialize.
 */

/**
 * @param {JQueryStatic} $ - jQuery.
 * @param {Object & {
 *   codeEditor: WpCodeEditor,
 *   CodeMirror: typeof import('codemirror'),
 * }} wp - WordPress namespace.
 */
( function( $, wp ) {
	'use strict';

	/**
	 * Default settings for code editor.
	 *
	 * @since 4.9.0
	 * @type {CodeEditorSettings}
	 */
	wp.codeEditor.defaultSettings = {
		codemirror: {},
		csslint: {},
		htmlhint: {},
		jshint: {},
		onTabNext: function() {},
		onTabPrevious: function() {},
		onChangeLintingErrors: function() {},
		onUpdateErrorNotice: function() {},
	};

	/**
	 * Configure linting.
	 *
	 * @param {CodeEditorSettings} settings - Code editor settings.
	 *
	 * @return {LintingController} Linting controller.
	 */
	function configureLinting( settings ) { // eslint-disable-line complexity
		/** @type {LintAnnotation[]} */
		let currentErrorAnnotations = [];

		/** @type {LintAnnotation[]} */
		let previouslyShownErrorAnnotations = [];

		/**
		 * Call the onUpdateErrorNotice if there are new errors to show.
		 *
		 * @param {import('codemirror').Editor} editor - Editor.
		 * @return {void}
		 */
		function updateErrorNotice( editor ) {
			if ( settings.onUpdateErrorNotice && ! _.isEqual( currentErrorAnnotations, previouslyShownErrorAnnotations ) ) {
				settings.onUpdateErrorNotice( currentErrorAnnotations, /** @type {CodeMirrorEditor} */ ( editor ) );
				previouslyShownErrorAnnotations = currentErrorAnnotations;
			}
		}

		/**
		 * Get lint options.
		 *
		 * @return {CombinedLintOptions|false} Lint options.
		 */
		function getLintOptions() { // eslint-disable-line complexity
			/** @type {CombinedLintOptions | boolean} */
			let options = settings.codemirror?.lint ?? false;

			if ( ! options ) {
				return false;
			}

			if ( true === options ) {
				options = {};
			} else if ( _.isObject( options ) ) {
				options = $.extend( {}, options );
			}
			const linterOptions = /** @type {CombinedLintOptions} */ ( options );

			// Configure JSHint.
			if ( 'javascript' === settings.codemirror?.mode && settings.jshint ) {
				$.extend( linterOptions, settings.jshint );
			}

			// Configure CSSLint.
			if ( 'css' === settings.codemirror?.mode && settings.csslint ) {
				$.extend( linterOptions, settings.csslint );
			}

			// Configure HTMLHint.
			if ( 'htmlmixed' === settings.codemirror?.mode && settings.htmlhint ) {
				linterOptions.rules = $.extend( {}, settings.htmlhint );

				if ( settings.jshint && linterOptions.rules ) {
					linterOptions.rules.jshint = settings.jshint;
				}
				if ( settings.csslint && linterOptions.rules ) {
					linterOptions.rules.csslint = settings.csslint;
				}
			}

			// Wrap the onUpdateLinting CodeMirror event to route to onChangeLintingErrors and onUpdateErrorNotice.
			linterOptions.onUpdateLinting = (function( onUpdateLintingOverridden ) {
				/**
				 * @param {LintAnnotation[]} annotations - Annotations.
				 * @param {LintAnnotation[]} annotationsSorted - Sorted annotations.
				 * @param {CodeMirrorEditor} cm - Editor.
				 */
				return function( annotations, annotationsSorted, cm ) {
					const errorAnnotations = annotations.filter( function( annotation ) {
						return 'error' === annotation.severity;
					} );

					if ( onUpdateLintingOverridden ) {
						onUpdateLintingOverridden( annotations, annotationsSorted, cm );
					}

					// Skip if there are no changes to the errors.
					if ( _.isEqual( errorAnnotations, currentErrorAnnotations ) ) {
						return;
					}

					currentErrorAnnotations = errorAnnotations;

					if ( settings.onChangeLintingErrors ) {
						settings.onChangeLintingErrors( errorAnnotations, annotations, annotationsSorted, cm );
					}

					/*
					 * Update notifications when the editor is not focused to prevent error message
					 * from overwhelming the user during input, unless there are now no errors or there
					 * were previously errors shown. In these cases, update immediately so they can know
					 * that they fixed the errors.
					 */
					if ( ! cm.state.focused || 0 === currentErrorAnnotations.length || previouslyShownErrorAnnotations.length > 0 ) {
						updateErrorNotice( cm );
					}
				};
			})( linterOptions.onUpdateLinting );

			return linterOptions;
		}

		return {
			getLintOptions,
			/**
			 * @param {CodeMirrorEditor} editor - Editor instance.
			 * @return {void}
			 */
			init: function( editor ) {
				// Keep lint options populated.
				editor.on( 'optionChange', function( _cm, option ) {
					const gutterName = 'CodeMirror-lint-markers';
					if ( 'lint' !== ( /** @type {string} */ ( option ) ) ) {
						return;
					}
					const gutters = ( /** @type {string[]} */ ( editor.getOption( 'gutters' ) ) ) || [];
					const options = editor.getOption( 'lint' );
					if ( true === options ) {
						if ( ! _.contains( gutters, gutterName ) ) {
							editor.setOption( 'gutters', [ gutterName ].concat( gutters ) );
						}
						editor.setOption( 'lint', getLintOptions() ); // Expand to include linting options.
					} else if ( ! options ) {
						editor.setOption( 'gutters', _.without( gutters, gutterName ) );
					}

					// Force update on error notice to show or hide.
					if ( editor.getOption( 'lint' ) && editor.performLint ) {
						editor.performLint();
					} else {
						currentErrorAnnotations = [];
						updateErrorNotice( editor );
					}
				} );

				// Update error notice when leaving the editor.
				editor.on( 'blur', updateErrorNotice );

				// Work around hint selection with mouse causing focus to leave editor.
				editor.on( 'startCompletion', function() {
					editor.off( 'blur', updateErrorNotice );
				} );
				editor.on( 'endCompletion', function() {
					const editorRefocusWait = 500;
					editor.on( 'blur', updateErrorNotice );

					// Wait for editor to possibly get re-focused after selection.
					_.delay( function() {
						if ( ! editor.state.focused ) {
							updateErrorNotice( editor );
						}
					}, editorRefocusWait );
				} );

				/*
				 * Make sure setting validities are set if the user tries to click Publish
				 * while an autocomplete dropdown is still open. The Customizer will block
				 * saving when a setting has an error notifications on it. This is only
				 * necessary for mouse interactions because keyboards will have already
				 * blurred the field and cause onUpdateErrorNotice to have already been
				 * called.
				 */
				$( document.body ).on( 'mousedown', function( /** @type {JQuery.MouseDownEvent} */ event ) {
					if (
						editor.state.focused &&
						! editor.getWrapperElement().contains( event.target ) &&
						! event.target.classList.contains( 'CodeMirror-hint' )
					) {
						updateErrorNotice( editor );
					}
				} );
			},
			/**
			 * @param {CodeMirrorEditor} editor - Editor instance.
			 * @return {void}
			 */
			updateErrorNotice,
		};
	}

	/**
	 * Configure tabbing.
	 *
	 * @param {CodeMirrorEditor} codemirror - Editor.
	 * @param {CodeEditorSettings} settings - Code editor settings.
	 *
	 * @return {void}
	 */
	function configureTabbing( codemirror, settings ) {
		const $textarea = $( codemirror.getTextArea() );

		codemirror.on( 'blur', function() {
			$textarea.data( 'next-tab-blurs', false );
		});
		codemirror.on( 'keydown', function onKeydown( _editor, event ) {
			// Take note of the ESC keypress so that the next TAB can focus outside the editor.
			if ( 'Escape' === event.key ) {
				$textarea.data( 'next-tab-blurs', true );
				return;
			}

			// Short-circuit if tab key is not being pressed or the tab key press should move focus.
			if ( 'Tab' !== event.key || ! $textarea.data( 'next-tab-blurs' ) ) {
				return;
			}

			// Focus on previous or next focusable item.
			if ( event.shiftKey && settings.onTabPrevious ) {
				settings.onTabPrevious( codemirror, event );
			} else if ( ! event.shiftKey && settings.onTabNext ) {
				settings.onTabNext( codemirror, event );
			}

			// Reset tab state.
			$textarea.data( 'next-tab-blurs', false );

			// Prevent tab character from being added.
			event.preventDefault();
		});
	}

	/**
	 * @typedef {object} LintingController
	 * @property {() => CombinedLintOptions|false} getLintOptions - Get lint options.
	 * @property {(editor: CodeMirrorEditor) => void} init - Initialize.
	 * @property {(editor: import('codemirror').Editor) => void} updateErrorNotice - Update error notice.
	 */

	/**
	 * Initialize Code Editor (CodeMirror) for an existing textarea.
	 *
	 * @since 4.9.0
	 *
	 * @param {string|JQuery<HTMLElement>|HTMLElement} textarea - The HTML id, jQuery object, or DOM Element for the textarea that is used for the editor.
	 * @param {CodeEditorSettings}    [settings] - Settings to override defaults.
	 *
	 * @return {CodeEditorInstance} Instance.
	 */
	wp.codeEditor.initialize = function initialize( textarea, settings ) {
		if ( document.readyState === 'loading' ) {
			console.warn( 'wp.codeEditor.initialize() ran too early. Invoke this function in a `DOMContentLoaded` event listener.' );
		}

		let $textarea;
		if ( 'string' === typeof textarea ) {
			$textarea = $( '#' + textarea );
		} else {
			$textarea = $( textarea );
		}

		/** @type {CodeEditorSettings} */
		const instanceSettings = $.extend( true, {}, wp.codeEditor.defaultSettings, settings );

		const lintingController = configureLinting( instanceSettings );
		if ( instanceSettings.codemirror ) {
			instanceSettings.codemirror.lint = lintingController.getLintOptions();
		}

		const codemirror = /** @type {CodeMirrorEditor} */ ( wp.CodeMirror.fromTextArea( $textarea[0], instanceSettings.codemirror ) );

		lintingController.init( codemirror );

		/** @type {CodeEditorInstance} */
		const instance = {
			settings: instanceSettings,
			codemirror,
			updateErrorNotice: function() {
				lintingController.updateErrorNotice( codemirror );
			},
		};

		if ( codemirror.showHint ) {
			codemirror.on( 'inputRead', function( _editor, change ) {
				// Only trigger autocompletion for typed input or IME composition.
				if ( ! change.origin || ( '+input' !== change.origin && ! change.origin.startsWith( '*compose' ) ) ) {
					return;
				}

				// Only trigger autocompletion for single-character inputs.
				// The text property is an array of strings, one for each line.
				// We check that there is only one line and that line has only one character.
				if ( 1 !== change.text.length || 1 !== change.text[0].length ) {
					return;
				}

				const char = change.text[0];
				const isAlphaKey = /^[a-zA-Z]$/.test( char );
				if ( codemirror.state.completionActive && isAlphaKey ) {
					return;
				}

				// Prevent autocompletion in string literals or comments.
				const token = /** @type {import('codemirror').Token & { state: CodeMirrorTokenState }} */ ( codemirror.getTokenAt( codemirror.getCursor() ) );
				if ( 'string' === token.type || 'comment' === token.type ) {
					return;
				}

				const innerMode = wp.CodeMirror.innerMode( codemirror.getMode(), token.state ).mode.name;
				const doc = codemirror.getDoc();
				const lineBeforeCursor = doc.getLine( doc.getCursor().line ).slice( 0, doc.getCursor().ch );
				let shouldAutocomplete = false;
				if ( 'html' === innerMode || 'xml' === innerMode ) {
					shouldAutocomplete = (
						'<' === char ||
						( '/' === char && 'tag' === token.type ) ||
						( isAlphaKey && 'tag' === token.type ) ||
						( isAlphaKey && 'attribute' === token.type ) ||
						( '=' === char && !! (
							token.state.htmlState?.tagName ||
							token.state.curState?.htmlState?.tagName
						) )
					);
				} else if ( 'css' === innerMode ) {
					shouldAutocomplete =
						isAlphaKey ||
						':' === char ||
						( ' ' === char && /:\s+$/.test( lineBeforeCursor ) );
				} else if ( 'javascript' === innerMode ) {
					shouldAutocomplete = isAlphaKey || '.' === char;
				} else if ( 'clike' === innerMode && 'php' === codemirror.options.mode ) {
					shouldAutocomplete = isAlphaKey && ( 'keyword' === token.type || 'variable' === token.type );
				}
				if ( shouldAutocomplete ) {
					codemirror.showHint( { completeSingle: false } );
				}
			} );
		}

		// Facilitate tabbing out of the editor.
		configureTabbing( codemirror, instanceSettings );

		return instance;
	};

})( jQuery, window.wp );

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0755
widgets
--
7 Oct 2024 8.37 AM
bravetechrwanda / bravetechrwanda
0755
wk
--
8 Feb 2026 11.06 PM
bravetechrwanda / bravetechrwanda
0755
wp-site
--
6 May 2026 1.29 AM
bravetechrwanda / bravetechrwanda
0755
accordion.js
2.864 KB
13 Oct 2024 11.09 PM
bravetechrwanda / bravetechrwanda
0644
accordion.min.js
0.74 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
application-passwords.js
6.244 KB
18 Sep 2023 2.51 AM
bravetechrwanda / bravetechrwanda
0644
application-passwords.min.js
2.953 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
auth-app.js
5.66 KB
24 Feb 2021 12.45 AM
bravetechrwanda / bravetechrwanda
0644
auth-app.min.js
2.035 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
code-editor.js
17.542 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
code-editor.min.js
3.46 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
color-picker.js
9.539 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644
color-picker.min.js
3.404 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
comment.js
2.851 KB
12 Feb 2024 12.14 AM
bravetechrwanda / bravetechrwanda
0644
comment.min.js
1.284 KB
9 Apr 2022 12.07 AM
bravetechrwanda / bravetechrwanda
0644
common.js
61.266 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
common.min.js
23.205 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
custom-background.js
3.354 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644
custom-background.min.js
1.178 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
custom-header.js
1.976 KB
24 Feb 2021 12.45 AM
bravetechrwanda / bravetechrwanda
0644
customize-controls.js
288.413 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
customize-controls.min.js
109.689 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
customize-nav-menus.js
111.46 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
customize-nav-menus.min.js
47.141 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
customize-widgets.js
70.046 KB
21 Jun 2024 10.17 PM
bravetechrwanda / bravetechrwanda
0644
customize-widgets.min.js
27.407 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
dashboard.js
27.018 KB
16 Mar 2025 11.40 PM
bravetechrwanda / bravetechrwanda
0644
dashboard.min.js
8.654 KB
16 Mar 2025 11.40 PM
bravetechrwanda / bravetechrwanda
0644
edit-comments.js
37.245 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
edit-comments.min.js
15.151 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
editor-expand.js
41.607 KB
12 Apr 2024 9.47 PM
bravetechrwanda / bravetechrwanda
0644
editor-expand.min.js
13.136 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
editor.js
43.999 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
editor.min.js
12.778 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
farbtastic.js
7.665 KB
18 Jul 2023 2.03 AM
bravetechrwanda / bravetechrwanda
0644
gallery.js
5.413 KB
10 Oct 2023 1.31 AM
bravetechrwanda / bravetechrwanda
0644
gallery.min.js
3.653 KB
10 Oct 2023 1.31 AM
bravetechrwanda / bravetechrwanda
0644
image-edit.js
39.977 KB
28 Aug 2024 8.45 PM
bravetechrwanda / bravetechrwanda
0644
image-edit.min.js
15.151 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
inline-edit-post.js
20.2 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
inline-edit-post.min.js
9.388 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
inline-edit-tax.js
7.614 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644
inline-edit-tax.min.js
2.927 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
iris.min.js
23.089 KB
3 Nov 2021 11.40 PM
bravetechrwanda / bravetechrwanda
0644
language-chooser.js
0.869 KB
24 Feb 2021 12.45 AM
bravetechrwanda / bravetechrwanda
0644
language-chooser.min.js
0.413 KB
24 Feb 2021 12.45 AM
bravetechrwanda / bravetechrwanda
0644
link.js
4.759 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
link.min.js
2.265 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
media-gallery.js
1.272 KB
24 Feb 2021 12.45 AM
bravetechrwanda / bravetechrwanda
0644
media-gallery.min.js
0.597 KB
9 Apr 2022 12.07 AM
bravetechrwanda / bravetechrwanda
0644
media-upload.js
3.384 KB
22 Jan 2021 5.32 PM
bravetechrwanda / bravetechrwanda
0644
media-upload.min.js
1.125 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
media.js
6.606 KB
7 Oct 2024 6.49 AM
bravetechrwanda / bravetechrwanda
0644
media.min.js
2.382 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
nav-menu.js
61.149 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
nav-menu.min.js
30.063 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
password-strength-meter.js
4.137 KB
22 Jan 2021 5.32 PM
bravetechrwanda / bravetechrwanda
0644
password-strength-meter.min.js
1.097 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
password-toggle.js
1.308 KB
24 Jun 2023 3.09 AM
bravetechrwanda / bravetechrwanda
0644
password-toggle.min.js
0.827 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
plugin-install.js
6.92 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644
plugin-install.min.js
2.347 KB
2 Feb 2023 9.36 PM
bravetechrwanda / bravetechrwanda
0644
post.js
39.537 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
post.min.js
18.952 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
postbox.js
18.493 KB
16 Mar 2025 11.40 PM
bravetechrwanda / bravetechrwanda
0644
postbox.min.js
6.603 KB
16 Mar 2025 11.40 PM
bravetechrwanda / bravetechrwanda
0644
privacy-tools.js
10.667 KB
21 Jun 2024 10.17 PM
bravetechrwanda / bravetechrwanda
0644
privacy-tools.min.js
5.033 KB
21 Jun 2024 10.17 PM
bravetechrwanda / bravetechrwanda
0644
revisions.js
33.915 KB
14 Oct 2024 12.49 AM
bravetechrwanda / bravetechrwanda
0644
revisions.min.js
17.97 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
set-post-thumbnail.js
0.855 KB
7 Jul 2020 10.55 PM
bravetechrwanda / bravetechrwanda
0644
set-post-thumbnail.min.js
0.605 KB
7 Jul 2020 10.55 PM
bravetechrwanda / bravetechrwanda
0644
site-health.js
13.555 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
site-health.min.js
6.322 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
site-icon.js
6.097 KB
24 Aug 2024 2.47 AM
bravetechrwanda / bravetechrwanda
0644
site-icon.min.js
2.201 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
svg-painter.js
3.203 KB
8 Sep 2024 2.44 AM
bravetechrwanda / bravetechrwanda
0644
svg-painter.min.js
1.53 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
tags-admin.js
5.19 MB
26 Dec 2024 3.40 PM
bravetechrwanda / bravetechrwanda
0644
tags-box.js
10.879 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644
tags-box.min.js
3.005 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
tags-suggest.js
5.636 KB
19 Feb 2024 3.16 AM
bravetechrwanda / bravetechrwanda
0644
tags-suggest.min.js
2.216 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
tags.js
5.955 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
tags.min.js
2.409 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
theme-plugin-editor.js
25.563 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
theme-plugin-editor.min.js
11.82 KB
21 May 2026 3.20 PM
bravetechrwanda / bravetechrwanda
0644
theme.js
54.944 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
theme.min.js
26.506 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
updates.js
109.374 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
updates.min.js
47.308 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
user-profile.js
17.913 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
user-profile.min.js
7.81 KB
3 Dec 2025 5.00 PM
bravetechrwanda / bravetechrwanda
0644
user-suggest.js
2.247 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644
user-suggest.min.js
0.66 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
widgets.js
22.557 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644
widgets.min.js
12.313 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
word-count.js
7.516 KB
28 Jul 2020 3.35 AM
bravetechrwanda / bravetechrwanda
0644
word-count.min.js
1.494 KB
6 Feb 2025 10.27 PM
bravetechrwanda / bravetechrwanda
0644
xfn.js
0.723 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644
xfn.min.js
0.447 KB
18 Mar 2021 11.01 PM
bravetechrwanda / bravetechrwanda
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF Static GIF