1 /*! |
1 /*! |
2 * jQuery UI Progressbar 1.13.1 |
2 * jQuery UI Progressbar 1.13.3 |
3 * http://jqueryui.com |
3 * https://jqueryui.com |
4 * |
4 * |
5 * Copyright jQuery Foundation and other contributors |
5 * Copyright OpenJS Foundation and other contributors |
6 * Released under the MIT license. |
6 * Released under the MIT license. |
7 * http://jquery.org/license |
7 * https://jquery.org/license |
8 */ |
8 */ |
9 |
9 |
10 //>>label: Progressbar |
10 //>>label: Progressbar |
11 //>>group: Widgets |
11 //>>group: Widgets |
12 /* eslint-disable max-len */ |
12 /* eslint-disable max-len */ |
13 //>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators. |
13 //>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators. |
14 /* eslint-enable max-len */ |
14 /* eslint-enable max-len */ |
15 //>>docs: http://api.jqueryui.com/progressbar/ |
15 //>>docs: https://api.jqueryui.com/progressbar/ |
16 //>>demos: http://jqueryui.com/progressbar/ |
16 //>>demos: https://jqueryui.com/progressbar/ |
17 //>>css.structure: ../../themes/base/core.css |
17 //>>css.structure: ../../themes/base/core.css |
18 //>>css.structure: ../../themes/base/progressbar.css |
18 //>>css.structure: ../../themes/base/progressbar.css |
19 //>>css.theme: ../../themes/base/theme.css |
19 //>>css.theme: ../../themes/base/theme.css |
20 |
20 |
21 ( function( factory ) { |
21 ( function( factory ) { |
24 if ( typeof define === "function" && define.amd ) { |
24 if ( typeof define === "function" && define.amd ) { |
25 |
25 |
26 // AMD. Register as an anonymous module. |
26 // AMD. Register as an anonymous module. |
27 define( [ |
27 define( [ |
28 "jquery", |
28 "jquery", |
29 "./core" |
29 "../version", |
|
30 "../widget" |
30 ], factory ); |
31 ], factory ); |
31 } else { |
32 } else { |
32 |
33 |
33 // Browser globals |
34 // Browser globals |
34 factory( jQuery ); |
35 factory( jQuery ); |
35 } |
36 } |
36 } )( function( $ ) { |
37 } )( function( $ ) { |
37 "use strict"; |
38 "use strict"; |
38 |
39 |
39 return $.widget( "ui.progressbar", { |
40 return $.widget( "ui.progressbar", { |
40 version: "1.13.1", |
41 version: "1.13.3", |
41 options: { |
42 options: { |
42 classes: { |
43 classes: { |
43 "ui-progressbar": "ui-corner-all", |
44 "ui-progressbar": "ui-corner-all", |
44 "ui-progressbar-value": "ui-corner-left", |
45 "ui-progressbar-value": "ui-corner-left", |
45 "ui-progressbar-complete": "ui-corner-right" |
46 "ui-progressbar-complete": "ui-corner-right" |