From 840e0cd4a8cf1709724e6f0a266f39a7f56ad617 Mon Sep 17 00:00:00 2001 From: Scott González Date: Thu, 29 Nov 2012 09:49:25 -0500 Subject: Progressbar demos: Removed animated demo. --- demos/progressbar/animated.html | 34 ---------------------------------- demos/progressbar/index.html | 1 - 2 files changed, 35 deletions(-) delete mode 100644 demos/progressbar/animated.html (limited to 'demos/progressbar') diff --git a/demos/progressbar/animated.html b/demos/progressbar/animated.html deleted file mode 100644 index 5cb1872ed..000000000 --- a/demos/progressbar/animated.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - jQuery UI Progressbar - Animated - - - - - - - - - - -
- -
-

-This progressbar has an animated fill by setting the -ui-progressbar-overlay class -on the -.ui-progressbar-value -element's overlay div. -

-
- - diff --git a/demos/progressbar/index.html b/demos/progressbar/index.html index df3483816..2dcf6be9c 100644 --- a/demos/progressbar/index.html +++ b/demos/progressbar/index.html @@ -8,7 +8,6 @@ -- cgit v1.2.3 From eb938a67a1f8ee0151fd6414d22a9e260894c935 Mon Sep 17 00:00:00 2001 From: Scott González Date: Thu, 29 Nov 2012 09:51:04 -0500 Subject: Progressbar demos: Removed resize demo. --- demos/progressbar/index.html | 1 - demos/progressbar/resize.html | 33 --------------------------------- 2 files changed, 34 deletions(-) delete mode 100644 demos/progressbar/resize.html (limited to 'demos/progressbar') diff --git a/demos/progressbar/index.html b/demos/progressbar/index.html index 2dcf6be9c..3997d8f77 100644 --- a/demos/progressbar/index.html +++ b/demos/progressbar/index.html @@ -8,7 +8,6 @@ diff --git a/demos/progressbar/resize.html b/demos/progressbar/resize.html deleted file mode 100644 index eac40c0c0..000000000 --- a/demos/progressbar/resize.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - jQuery UI Progressbar - Resizable - - - - - - - - - - - - -
-
-
- -
-

The progress bar's widths are specified in percentages for flexible sizing so it will resize to fit its container. Try resizing the height and width of this bar to see how it maintains the correct proportions. (This is not necessarily a real-world example, but it's a good illustration of how flexibly all the plugins are coded.)

-
- - -- cgit v1.2.3 From a5d50da591fdf329f05cb38fb169627018093528 Mon Sep 17 00:00:00 2001 From: Scott González Date: Thu, 29 Nov 2012 12:06:22 -0500 Subject: Progressbar demos: Cleanup. --- demos/progressbar/indeterminate.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'demos/progressbar') diff --git a/demos/progressbar/indeterminate.html b/demos/progressbar/indeterminate.html index 34ce6da47..b07211496 100644 --- a/demos/progressbar/indeterminate.html +++ b/demos/progressbar/indeterminate.html @@ -16,27 +16,27 @@ }); $( "button" ).on( "click", function( event ) { var target = $( event.target ), - pbar = $( "#progressbar" ), - pbarValue = pbar.find( ".ui-progressbar-value" ); + progressbar = $( "#progressbar" ), + progressbarValue = progressbar.find( ".ui-progressbar-value" ); if ( target.is( "#numButton" ) ) { - pbar.progressbar( "option", { + progressbar.progressbar( "option", { value: Math.floor( Math.random() * 100 ) }); } else if ( target.is( "#colorButton" ) ) { - pbarValue.css({ + progressbarValue.css({ "background": '#' + Math.floor( Math.random() * 16777215 ).toString( 16 ) }); } else if ( target.is( "#falseButton" ) ) { - pbar.progressbar( "option", "value", false ); + progressbar.progressbar( "option", "value", false ); } }); }); -- cgit v1.2.3 From 548a6ce7f927f327e7db261d343caba9b889409d Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Thu, 29 Nov 2012 22:12:30 -0600 Subject: Progressbar: Add custom label demo. --- demos/progressbar/label.html | 57 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 demos/progressbar/label.html (limited to 'demos/progressbar') diff --git a/demos/progressbar/label.html b/demos/progressbar/label.html new file mode 100644 index 000000000..c4334b65c --- /dev/null +++ b/demos/progressbar/label.html @@ -0,0 +1,57 @@ + + + + + jQuery UI Progressbar - Default functionality + + + + + + + + + + + +
Loading...
+ +
+

Custom updated label demo.

+
+ + -- cgit v1.2.3 From da240d9da104921534a18a9dc62ff1c15f0ed650 Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Mon, 3 Dec 2012 21:25:55 -0600 Subject: Progressbar: Custom label demo cleanup --- demos/progressbar/label.html | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) (limited to 'demos/progressbar') diff --git a/demos/progressbar/label.html b/demos/progressbar/label.html index c4334b65c..25394b205 100644 --- a/demos/progressbar/label.html +++ b/demos/progressbar/label.html @@ -2,7 +2,7 @@ - jQuery UI Progressbar - Default functionality + jQuery UI Progressbar - Custom Label @@ -10,35 +10,36 @@