__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
/*!
 * jQuery UI Progressbar 1.13.3
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://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: https://api.jqueryui.com/progressbar/
//>>demos: https://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",
			"../version",
			"../widget"
		], factory );
	} else {

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

return $.widget( "ui.progressbar", {
	version: "1.13.3",
	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.76 KB 0640
accordion.min.js File 8.65 KB 0640
autocomplete.js File 17.12 KB 0640
autocomplete.min.js File 8.34 KB 0640
button.js File 11.43 KB 0640
button.min.js File 6.01 KB 0640
checkboxradio.js File 7.41 KB 0640
checkboxradio.min.js File 4.25 KB 0640
controlgroup.js File 8.42 KB 0640
controlgroup.min.js File 4.3 KB 0640
core.js File 48.72 KB 0640
core.min.js File 20.96 KB 0640
datepicker.js File 80.59 KB 0640
datepicker.min.js File 35.89 KB 0640
dialog.js File 23.34 KB 0640
dialog.min.js File 12.79 KB 0640
draggable.js File 34.71 KB 0640
draggable.min.js File 17.99 KB 0640
droppable.js File 12.6 KB 0640
droppable.min.js File 6.51 KB 0640
effect-blind.js File 1.61 KB 0640
effect-blind.min.js File 880 B 0640
effect-bounce.js File 2.6 KB 0640
effect-bounce.min.js File 991 B 0640
effect-clip.js File 1.54 KB 0640
effect-clip.min.js File 796 B 0640
effect-drop.js File 1.56 KB 0640
effect-drop.min.js File 753 B 0640
effect-explode.js File 2.86 KB 0640
effect-explode.min.js File 1.1 KB 0640
effect-fade.js File 968 B 0640
effect-fade.min.js File 525 B 0640
effect-fold.js File 2.13 KB 0640
effect-fold.min.js File 1020 B 0640
effect-highlight.js File 1.21 KB 0640
effect-highlight.min.js File 648 B 0640
effect-puff.js File 995 B 0640
effect-puff.min.js File 510 B 0640
effect-pulsate.js File 1.53 KB 0640
effect-pulsate.min.js File 688 B 0640
effect-scale.js File 1.34 KB 0640
effect-scale.min.js File 723 B 0640
effect-shake.js File 1.84 KB 0640
effect-shake.min.js File 846 B 0640
effect-size.js File 5.29 KB 0640
effect-size.min.js File 2.43 KB 0640
effect-slide.js File 1.92 KB 0640
effect-slide.min.js File 917 B 0640
effect-transfer.js File 888 B 0640
effect-transfer.min.js File 442 B 0640
effect.js File 24.04 KB 0640
effect.min.js File 10.09 KB 0640
menu.js File 18.52 KB 0640
menu.min.js File 9.96 KB 0640
mouse.js File 6.08 KB 0640
mouse.min.js File 3.35 KB 0640
progressbar.js File 4.14 KB 0640
progressbar.min.js File 2.5 KB 0640
resizable.js File 29.78 KB 0640
resizable.min.js File 18.38 KB 0640
selectable.js File 7.94 KB 0640
selectable.min.js File 4.4 KB 0640
selectmenu.js File 15.96 KB 0640
selectmenu.min.js File 9.28 KB 0640
slider.js File 19.14 KB 0640
slider.min.js File 10.51 KB 0640
sortable.js File 46.52 KB 0640
sortable.min.js File 24.91 KB 0640
spinner.js File 14.1 KB 0640
spinner.min.js File 7.5 KB 0640
tabs.js File 23.11 KB 0640
tabs.min.js File 11.73 KB 0640
tooltip.js File 14.14 KB 0640
tooltip.min.js File 6.1 KB 0640
Filemanager