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 Progressbar 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/progressbar/ * * Depends: * jquery.ui.core.js * jquery.ui.widget.js */ (function( $, undefined ) { $.widget( "ui.progressbar", { version: "1.10.0", options: { max: 100, value: 0, change: null, complete: null }, min: 0, _create: function() { // Constrain initial value this.oldValue = this.options.value = this._constrainedValue(); this.element .addClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" ) .attr({ // Only set static values, aria-valuenow and aria-valuemax are // set inside _refreshValue() role: "progressbar", "aria-valuemin": this.min }); this.valueDiv = $( "<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>" ) .appendTo( this.element ); 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(); }, value: function( newValue ) { if ( newValue === undefined ) { return this.options.value; } this.options.value = this._constrainedValue( newValue ); this._refreshValue(); }, _constrainedValue: function( newValue ) { if ( newValue === undefined ) { newValue = this.options.value; } this.indeterminate = newValue === false; // sanitize value if ( typeof newValue !== "number" ) { newValue = 0; } return this.indeterminate ? false : Math.min( this.options.max, Math.max( this.min, newValue ) ); }, _setOptions: function( options ) { // Ensure "value" option is set after other values (like max) var value = options.value; delete options.value; this._super( options ); this.options.value = this._constrainedValue( value ); this._refreshValue(); }, _setOption: function( key, value ) { if ( key === "max" ) { // Don't allow a max less than min value = Math.max( this.min, value ); } this._super( key, value ); }, _percentage: function() { return this.indeterminate ? 100 : 100 * ( this.options.value - this.min ) / ( this.options.max - this.min ); }, _refreshValue: function() { var value = this.options.value, percentage = this._percentage(); this.valueDiv .toggle( this.indeterminate || value > this.min ) .toggleClass( "ui-corner-right", value === this.options.max ) .width( percentage.toFixed(0) + "%" ); this.element.toggleClass( "ui-progressbar-indeterminate", this.indeterminate ); if ( this.indeterminate ) { this.element.removeAttr( "aria-valuenow" ); if ( !this.overlayDiv ) { this.overlayDiv = $( "<div class='ui-progressbar-overlay'></div>" ).appendTo( this.valueDiv ); } } else { this.element.attr({ "aria-valuemax": this.options.max, "aria-valuenow": value }); if ( this.overlayDiv ) { this.overlayDiv.remove(); this.overlayDiv = null; } } if ( this.oldValue !== value ) { this.oldValue = value; this._trigger( "change" ); } if ( value === this.options.max ) { this._trigger( "complete" ); } } }); })( jQuery );