[ Avaa Bypassed ]




Upload:

Command:

www-data@18.116.14.133: ~ $
/*!
 * jQuery UI Progressbar 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */

//>>label: Progressbar
//>>group: Widgets
/* eslint-disable max-len */
//>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators.
/* eslint-enable max-len */
//>>docs: http://api.jqueryui.com/progressbar/
//>>demos: http://jqueryui.com/progressbar/
//>>css.structure: ../../themes/base/core.css
//>>css.structure: ../../themes/base/progressbar.css
//>>css.theme: ../../themes/base/theme.css

( function( factory ) {
	"use strict";

	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define( [
			"jquery",
			"./core"
		], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
} )( function( $ ) {
"use strict";

return $.widget( "ui.progressbar", {
	version: "1.13.2",
	options: {
		classes: {
			"ui-progressbar": "ui-corner-all",
			"ui-progressbar-value": "ui-corner-left",
			"ui-progressbar-complete": "ui-corner-right"
		},
		max: 100,
		value: 0,

		change: null,
		complete: null
	},

	min: 0,

	_create: function() {

		// Constrain initial value
		this.oldValue = this.options.value = this._constrainedValue();

		this.element.attr( {

			// Only set static values; aria-valuenow and aria-valuemax are
			// set inside _refreshValue()
			role: "progressbar",
			"aria-valuemin": this.min
		} );
		this._addClass( "ui-progressbar", "ui-widget ui-widget-content" );

		this.valueDiv = $( "<div>" ).appendTo( this.element );
		this._addClass( this.valueDiv, "ui-progressbar-value", "ui-widget-header" );
		this._refreshValue();
	},

	_destroy: function() {
		this.element.removeAttr( "role aria-valuemin aria-valuemax 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 );
	},

	_setOptionDisabled: function( value ) {
		this._super( value );

		this.element.attr( "aria-disabled", value );
		this._toggleClass( null, "ui-state-disabled", !!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 )
			.width( percentage.toFixed( 0 ) + "%" );

		this
			._toggleClass( this.valueDiv, "ui-progressbar-complete", null,
				value === this.options.max )
			._toggleClass( "ui-progressbar-indeterminate", null, this.indeterminate );

		if ( this.indeterminate ) {
			this.element.removeAttr( "aria-valuenow" );
			if ( !this.overlayDiv ) {
				this.overlayDiv = $( "<div>" ).appendTo( this.valueDiv );
				this._addClass( this.overlayDiv, "ui-progressbar-overlay" );
			}
		} 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" );
		}
	}
} );

} );

Filemanager

Name Type Size Permission Actions
accordion.js File 15.7 KB 0777
accordion.min.js File 8.61 KB 0777
autocomplete.js File 17.03 KB 0777
autocomplete.min.js File 8.27 KB 0777
button.js File 11.41 KB 0777
button.min.js File 5.99 KB 0777
checkboxradio.js File 7.36 KB 0777
checkboxradio.min.js File 4.21 KB 0777
controlgroup.js File 8.41 KB 0777
controlgroup.min.js File 4.29 KB 0777
core.js File 48.68 KB 0777
core.min.js File 20.94 KB 0777
datepicker.js File 80.56 KB 0777
datepicker.min.js File 35.87 KB 0777
dialog.js File 23.03 KB 0777
dialog.min.js File 12.65 KB 0777
draggable.js File 34.59 KB 0777
draggable.min.js File 17.89 KB 0777
droppable.js File 12.57 KB 0777
droppable.min.js File 6.49 KB 0777
effect-blind.js File 1.58 KB 0777
effect-blind.min.js File 864 B 0777
effect-bounce.js File 2.58 KB 0777
effect-bounce.min.js File 975 B 0777
effect-clip.js File 1.52 KB 0777
effect-clip.min.js File 780 B 0777
effect-drop.js File 1.54 KB 0777
effect-drop.min.js File 737 B 0777
effect-explode.js File 2.83 KB 0777
effect-explode.min.js File 1.08 KB 0777
effect-fade.js File 946 B 0777
effect-fade.min.js File 509 B 0777
effect-fold.js File 2.11 KB 0777
effect-fold.min.js File 1004 B 0777
effect-highlight.js File 1.19 KB 0777
effect-highlight.min.js File 632 B 0777
effect-puff.js File 973 B 0777
effect-puff.min.js File 494 B 0777
effect-pulsate.js File 1.51 KB 0777
effect-pulsate.min.js File 672 B 0777
effect-scale.js File 1.32 KB 0777
effect-scale.min.js File 707 B 0777
effect-shake.js File 1.82 KB 0777
effect-shake.min.js File 830 B 0777
effect-size.js File 5.27 KB 0777
effect-size.min.js File 2.42 KB 0777
effect-slide.js File 1.9 KB 0777
effect-slide.min.js File 901 B 0777
effect-transfer.js File 866 B 0777
effect-transfer.min.js File 426 B 0777
effect.js File 40.96 KB 0777
effect.min.js File 16.93 KB 0777
menu.js File 18.41 KB 0777
menu.min.js File 9.88 KB 0777
mouse.js File 6.05 KB 0777
mouse.min.js File 3.32 KB 0777
progressbar.js File 4.12 KB 0777
progressbar.min.js File 2.48 KB 0777
resizable.js File 29.62 KB 0777
resizable.min.js File 18.27 KB 0777
selectable.js File 7.92 KB 0777
selectable.min.js File 4.38 KB 0777
selectmenu.js File 15.75 KB 0777
selectmenu.min.js File 9.13 KB 0777
slider.js File 19.1 KB 0777
slider.min.js File 10.48 KB 0777
sortable.js File 46.45 KB 0777
sortable.min.js File 24.85 KB 0777
spinner.js File 14.03 KB 0777
spinner.min.js File 7.44 KB 0777
tabs.js File 23.02 KB 0777
tabs.min.js File 11.66 KB 0777
tooltip.js File 14.06 KB 0777
tooltip.min.js File 6.04 KB 0777