aboutsummaryrefslogtreecommitdiffstats
path: root/demos/functional/templates/ui.progressbar.html
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-23 13:36:42 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-23 13:36:42 +0000
commit731bff8bcbfe686d12bb7b3b89c0224c1af4ffd3 (patch)
tree6470ed15dee3bf442b6fc5b4eea12088871ae278 /demos/functional/templates/ui.progressbar.html
parent2b21245cd01e91b9b3114d06ba5b45650cf63ec6 (diff)
downloadjquery-ui-731bff8bcbfe686d12bb7b3b89c0224c1af4ffd3.tar.gz
jquery-ui-731bff8bcbfe686d12bb7b3b89c0224c1af4ffd3.zip
demos: removed legacy demos folders - functional, real-world
Diffstat (limited to 'demos/functional/templates/ui.progressbar.html')
-rw-r--r--demos/functional/templates/ui.progressbar.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/demos/functional/templates/ui.progressbar.html b/demos/functional/templates/ui.progressbar.html
deleted file mode 100644
index 324f29fa4..000000000
--- a/demos/functional/templates/ui.progressbar.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<script type="text/javascript">
-
- var model = {
-
- renderAt: '#containerDemo',
-
- title: 'Progressbar Demos',
-
- demos: [
-
- {
- title: 'Simple Progressbar',
- desc: 'With few lines of code you could build a progressbar. You can try more options on the fly!',
- html: '<div id="progressbar"></div>',
- destroy: '$("#progressbar").progressbar("destroy");',
- options: [
- { desc: 'Start a progressbar', source: '$("#progressbar").progressbar({interval:2000}); $("#progressbar").progressbar("start");' },
- { desc: 'With different increment', source: '$("#progressbar").progressbar({interval:2000, increment:100}).progressbar("start");' },
- { desc: 'Set progress to 50%', source: '$("#progressbar").progressbar().progressbar("progress", 50);' },
- { desc: 'Callback when finish', source: '$("#progressbar").progressbar({interval: 1000, stop:function(){alert("Finished");}}).progressbar("start");' },
- { desc: 'Enable the progressbar', source: '$("#progressbar").progressbar().progressbar("enable");' },
- { desc: 'Disable the progressbar', source: '$("#progressbar").progressbar().progressbar("disable");' }
- ]
- }
-
- ]
- };
-
- $(function(){
-
- uiRenderDemo(model);
-
- });
-
-</script> \ No newline at end of file