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 Pulsate 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/pulsate-effect/ * * Depends: * jquery.ui.effect.js */ (function( $, undefined ) { $.effects.effect.pulsate = function( o, done ) { var elem = $( this ), mode = $.effects.setMode( elem, o.mode || "show" ), show = mode === "show", hide = mode === "hide", showhide = ( show || mode === "hide" ), // showing or hiding leaves of the "last" animation anims = ( ( o.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ), duration = o.duration / anims, animateTo = 0, queue = elem.queue(), queuelen = queue.length, i; if ( show || !elem.is(":visible")) { elem.css( "opacity", 0 ).show(); animateTo = 1; } // anims - 1 opacity "toggles" for ( i = 1; i < anims; i++ ) { elem.animate({ opacity: animateTo }, duration, o.easing ); animateTo = 1 - animateTo; } elem.animate({ opacity: animateTo }, duration, o.easing); elem.queue(function() { if ( hide ) { elem.hide(); } done(); }); // We just queued up "anims" animations, we need to put them next in the queue if ( queuelen > 1 ) { queue.splice.apply( queue, [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) ); } elem.dequeue(); }; })(jQuery);