aboutsummaryrefslogtreecommitdiffstats
path: root/demos/functional/templates
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-11-19 02:34:05 +0000
committerRichard Worth <rdworth@gmail.com>2008-11-19 02:34:05 +0000
commit027e4d57b7085a6f2a2135646d04f2510192c2b7 (patch)
tree7fed9a49a293ff8623b732ee65bb9cb4f6f95820 /demos/functional/templates
parent29f7dc9a2c078495f6a0ed13c531733146528fb4 (diff)
downloadjquery-ui-027e4d57b7085a6f2a2135646d04f2510192c2b7.tar.gz
jquery-ui-027e4d57b7085a6f2a2135646d04f2510192c2b7.zip
Removed spinner from trunk. See /branches/dev/spinner
Diffstat (limited to 'demos/functional/templates')
-rw-r--r--demos/functional/templates/ui.spinner.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/demos/functional/templates/ui.spinner.html b/demos/functional/templates/ui.spinner.html
deleted file mode 100644
index a2714d2c5..000000000
--- a/demos/functional/templates/ui.spinner.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<script type="text/javascript">
-
- var model = {
-
- renderAt: '#containerDemo',
-
- title: 'Spinner Demos',
-
- demos: [
-
- {
- title: 'Simple spinner',
- desc: 'With few lines of code you could build a spinner. You can try more options on the fly!',
- html: '<input id="spinner" type="text" />',
- destroy: '$("#spinner").spinner("destroy");',
- options: [
- { desc: 'Make a spinner', source: '$("#spinner").spinner();' },
- { desc: 'A spinner with min and max value', source: '$("#spinner").spinner({min:-100, max:150});' },
- { desc: 'Big stepping', source: '$("#spinner").spinner({stepping:100});' },
- { desc: 'Currency option', source: '$("#spinner").spinner({currency:"$"});' },
- { desc: 'Disable incremental option', source: '$("#spinner").spinner({incremental:false});' },
- { desc: 'Disable the spinner', source: '$("#spinner").spinner().spinner("disable");' },
- { desc: 'Enable the spinner', source: '$("#spinner").spinner().spinner("enable");' }
- ]
- }
-
- ]
- };
-
- $(function(){
-
- uiRenderDemo(model);
-
- });
-
-</script> \ No newline at end of file