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