diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-11-29 09:49:25 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-11-29 09:49:25 -0500 |
commit | 840e0cd4a8cf1709724e6f0a266f39a7f56ad617 (patch) | |
tree | dae5a16f985540bafab226ad450e4e76cccb6dfd /demos/progressbar | |
parent | 948f874266271f6e02a5e9d88691742291fdd269 (diff) | |
download | jquery-ui-840e0cd4a8cf1709724e6f0a266f39a7f56ad617.tar.gz jquery-ui-840e0cd4a8cf1709724e6f0a266f39a7f56ad617.zip |
Progressbar demos: Removed animated demo.
Diffstat (limited to 'demos/progressbar')
-rw-r--r-- | demos/progressbar/animated.html | 34 | ||||
-rw-r--r-- | demos/progressbar/index.html | 1 |
2 files changed, 0 insertions, 35 deletions
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 @@ -<!doctype html> -<html lang="en"> -<head> - <meta charset="utf-8"> - <title>jQuery UI Progressbar - Animated</title> - <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css"> - <script src="../../jquery-1.8.3.js"></script> - <script src="../../ui/jquery.ui.core.js"></script> - <script src="../../ui/jquery.ui.widget.js"></script> - <script src="../../ui/jquery.ui.progressbar.js"></script> - <link rel="stylesheet" href="../demos.css"> - <script> - $(function() { - $( "#progressbar" ).progressbar({ - value: 59 - }).find( ".ui-progressbar-value div" ).addClass( "ui-progressbar-overlay" ); - }); - </script> -</head> -<body> - -<div id="progressbar"></div> - -<div class="demo-description"> -<p> -This progressbar has an animated fill by setting the -<code>ui-progressbar-overlay</code> class -on the -<code>.ui-progressbar-value</code> -element's overlay div. -</p> -</div> -</body> -</html> 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 @@ <ul> <li><a href="default.html">Default functionality</a></li> - <li><a href="animated.html">Animated</a></li> <li><a href="resize.html">Resizable progressbar</a></li> <li><a href="indeterminate.html">Indeterminate</a></li> </ul> |