aboutsummaryrefslogtreecommitdiffstats
path: root/demos/functional/templates/ui.slider.html
diff options
context:
space:
mode:
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