Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
javascript /
jquery-ui /
ui /
[ HOME SHELL ]
Name
Size
Permission
Action
effects
[ DIR ]
drwxr-xr-x
i18n
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
core.js
341
B
-rw-r--r--
core.min.js
239
B
-rw-r--r--
data.js
903
B
-rw-r--r--
data.min.js
331
B
-rw-r--r--
disable-selection.js
1.03
KB
-rw-r--r--
disable-selection.min.js
444
B
-rw-r--r--
effect.js
39.84
KB
-rw-r--r--
effect.min.js
22.64
KB
-rw-r--r--
escape-selector.js
475
B
-rw-r--r--
escape-selector.min.js
300
B
-rw-r--r--
focusable.js
2.21
KB
-rw-r--r--
focusable.min.js
1.08
KB
-rw-r--r--
form-reset-mixin.js
1.75
KB
-rw-r--r--
form-reset-mixin.min.js
932
B
-rw-r--r--
form.js
551
B
-rw-r--r--
form.min.js
229
B
-rw-r--r--
ie.js
356
B
-rw-r--r--
ie.min.js
198
B
-rw-r--r--
jquery-1-7.js
2.47
KB
-rw-r--r--
jquery-1-7.min.js
1.08
KB
-rw-r--r--
keycode.js
790
B
-rw-r--r--
keycode.min.js
296
B
-rw-r--r--
labels.js
1.67
KB
-rw-r--r--
labels.min.js
608
B
-rw-r--r--
plugin.js
991
B
-rw-r--r--
plugin.min.js
591
B
-rw-r--r--
position.js
14.53
KB
-rw-r--r--
position.min.js
9.49
KB
-rw-r--r--
safe-active-element.js
984
B
-rw-r--r--
safe-active-element.min.js
397
B
-rw-r--r--
safe-blur.js
493
B
-rw-r--r--
safe-blur.min.js
244
B
-rw-r--r--
scroll-parent.js
1.22
KB
-rw-r--r--
scroll-parent.min.js
645
B
-rw-r--r--
tabbable.js
853
B
-rw-r--r--
tabbable.min.js
338
B
-rw-r--r--
unique-id.js
947
B
-rw-r--r--
unique-id.min.js
379
B
-rw-r--r--
version.js
293
B
-rw-r--r--
version.min.js
158
B
-rw-r--r--
widget.js
19.29
KB
-rw-r--r--
widget.min.js
11.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : focusable.js
/*! * jQuery UI Focusable 1.12.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: :focusable Selector //>>group: Core //>>description: Selects elements which can be focused. //>>docs: http://api.jqueryui.com/focusable-selector/ ( function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./version" ], factory ); } else { // Browser globals factory( jQuery ); } } ( function( $ ) { // Selectors $.ui.focusable = function( element, hasTabindex ) { var map, mapName, img, focusableIfVisible, fieldset, nodeName = element.nodeName.toLowerCase(); if ( "area" === nodeName ) { map = element.parentNode; mapName = map.name; if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) { return false; } img = $( "img[usemap='#" + mapName + "']" ); return img.length > 0 && img.is( ":visible" ); } if ( /^(input|select|textarea|button|object)$/.test( nodeName ) ) { focusableIfVisible = !element.disabled; if ( focusableIfVisible ) { // Form controls within a disabled fieldset are disabled. // However, controls within the fieldset's legend do not get disabled. // Since controls generally aren't placed inside legends, we skip // this portion of the check. fieldset = $( element ).closest( "fieldset" )[ 0 ]; if ( fieldset ) { focusableIfVisible = !fieldset.disabled; } } } else if ( "a" === nodeName ) { focusableIfVisible = element.href || hasTabindex; } else { focusableIfVisible = hasTabindex; } return focusableIfVisible && $( element ).is( ":visible" ) && visible( $( element ) ); }; // Support: IE 8 only // IE 8 doesn't resolve inherit to visible/hidden for computed values function visible( element ) { var visibility = element.css( "visibility" ); while ( visibility === "inherit" ) { element = element.parent(); visibility = element.css( "visibility" ); } return visibility !== "hidden"; } $.extend( $.expr[ ":" ], { focusable: function( element ) { return $.ui.focusable( element, $.attr( element, "tabindex" ) != null ); } } ); return $.ui.focusable; } ) );
Close