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.216.195
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 Shake 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/shake-effect/ * * Depends: * jquery.ui.effect.js */ (function( $, undefined ) { $.effects.effect.shake = function( o, done ) { var el = $( this ), props = [ "position", "top", "bottom", "left", "right", "height", "width" ], mode = $.effects.setMode( el, o.mode || "effect" ), direction = o.direction || "left", distance = o.distance || 20, times = o.times || 3, anims = times * 2 + 1, speed = Math.round(o.duration/anims), ref = (direction === "up" || direction === "down") ? "top" : "left", positiveMotion = (direction === "up" || direction === "left"), animation = {}, animation1 = {}, animation2 = {}, i, // we will need to re-assemble the queue to stack our animations in place queue = el.queue(), queuelen = queue.length; $.effects.save( el, props ); el.show(); $.effects.createWrapper( el ); // Animation animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance; animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2; animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2; // Animate el.animate( animation, speed, o.easing ); // Shakes for ( i = 1; i < times; i++ ) { el.animate( animation1, speed, o.easing ).animate( animation2, speed, o.easing ); } el .animate( animation1, speed, o.easing ) .animate( animation, speed / 2, o.easing ) .queue(function() { if ( mode === "hide" ) { el.hide(); } $.effects.restore( el, props ); $.effects.removeWrapper( el ); done(); }); // inject all the animations we just queued to be first in line (after "inprogress") if ( queuelen > 1) { queue.splice.apply( queue, [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) ); } el.dequeue(); }; })(jQuery);