Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
core /
vendor /
jquery-ui /
ui /
Delete
Unzip
Name
Size
Permission
Date
Action
i18n
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
minified
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
jquery-ui.custom.js
422.49
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.accordion.js
14.56
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.autocomplete.js
15.62
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.button.js
11.54
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.core.js
8.06
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.datepicker.js
75.06
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.dialog.js
18.52
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.draggable.js
30.53
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.droppable.js
10.4
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-blind.js
1.88
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-bounce.js
2.72
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-clip.js
1.43
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-drop.js
1.44
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-explode.js
2.35
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-fade.js
558
B
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-fold.js
1.66
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-highlight.js
1002
B
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-pulsate.js
1.34
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-scale.js
8.08
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-shake.js
1.9
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-slide.js
1.44
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect-transfer.js
1.21
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.effect.js
30.69
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.menu.js
16.17
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.mouse.js
4.45
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.position.js
15.3
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.progressbar.js
3.29
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.resizable.js
26.76
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.selectable.js
6.8
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.slider.js
17.02
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.sortable.js
40.43
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.spinner.js
12.07
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.tabs.js
21.45
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.tooltip.js
10.57
KB
-rw-r--r--
2018-04-19 18:15
jquery.ui.widget.js
14.72
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
/*! * jQuery UI Effects Blind 1.10.0 * http://jqueryui.com * * Copyright 2013 jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://api.jqueryui.com/blind-effect/ * * Depends: * jquery.ui.effect.js */ (function( $, undefined ) { var rvertical = /up|down|vertical/, rpositivemotion = /up|left|vertical|horizontal/; $.effects.effect.blind = function( o, done ) { // Create element var el = $( this ), props = [ "position", "top", "bottom", "left", "right", "height", "width" ], mode = $.effects.setMode( el, o.mode || "hide" ), direction = o.direction || "up", vertical = rvertical.test( direction ), ref = vertical ? "height" : "width", ref2 = vertical ? "top" : "left", motion = rpositivemotion.test( direction ), animation = {}, show = mode === "show", wrapper, distance, margin; // if already wrapped, the wrapper's properties are my property. #6245 if ( el.parent().is( ".ui-effects-wrapper" ) ) { $.effects.save( el.parent(), props ); } else { $.effects.save( el, props ); } el.show(); wrapper = $.effects.createWrapper( el ).css({ overflow: "hidden" }); distance = wrapper[ ref ](); margin = parseFloat( wrapper.css( ref2 ) ) || 0; animation[ ref ] = show ? distance : 0; if ( !motion ) { el .css( vertical ? "bottom" : "right", 0 ) .css( vertical ? "top" : "left", "auto" ) .css({ position: "absolute" }); animation[ ref2 ] = show ? margin : distance + margin; } // start at 0 if we are showing if ( show ) { wrapper.css( ref, 0 ); if ( ! motion ) { wrapper.css( ref2, margin + distance ); } } // Animate wrapper.animate( animation, { duration: o.duration, easing: o.easing, queue: false, complete: function() { if ( mode === "hide" ) { el.hide(); } $.effects.restore( el, props ); $.effects.removeWrapper( el ); done(); } }); }; })(jQuery);