aboutsummaryrefslogtreecommitdiffstats
path: root/demos/functional/templates/ui.slider.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.slider.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.slider.html')
-rw-r--r--demos/functional/templates/ui.slider.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/demos/functional/templates/ui.slider.html b/demos/functional/templates/ui.slider.html
deleted file mode 100644
index 3245fe5fa..000000000
--- a/demos/functional/templates/ui.slider.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<script type="text/javascript">
-
- var model = {
-
- renderAt: '#containerDemo',
-
- title: 'Slider Demos',
-
- demos: [
-
- {
- title: 'Simple slider',
- desc: 'With few lines of code you could build a slider. You can try more options on the fly!',
- html: '<div id="slider3"><div class="ui-slider-handle"></div></div>',
- destroy: '$("#slider3").sortable("destroy");',
- options: [
- {
- desc: 'Make a simple slider',
- source: '$("#slider3").slider();'
- }
- ]
- },
-
- {
- title: 'Multiple slides',
- desc: 'You can also have multiples slides.',
- html: '<div id="slider1" class="ui-slider-2"><div class="ui-slider-handle"></div><div class="ui-slider-handle" style="left:100px"></div></div>',
- destroy: '$("#slider1").slider("destroy");',
- options: [
- { desc: 'Multiple slides', source: '$("#slider1").slider();' }
- //, { desc: 'Multiple slides with range', source: '$("#slider1").slider({ range: true });' }
- ]
- }
-
- ]
- };
-
- $(function(){
-
- uiRenderDemo(model);
-
- });
-
-</script> \ No newline at end of file