diff options
Diffstat (limited to 'demos/functional/templates/ui.accordion.html')
-rw-r--r-- | demos/functional/templates/ui.accordion.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/demos/functional/templates/ui.accordion.html b/demos/functional/templates/ui.accordion.html new file mode 100644 index 000000000..57191bf04 --- /dev/null +++ b/demos/functional/templates/ui.accordion.html @@ -0,0 +1,33 @@ +<script type="text/javascript"> + + var model = { + + renderAt: '#containerDemo', + + title: 'Accordion Demos', + + desc: 'Simple accordion', + + demos: [ + + { + title: 'Simple accordion', + html: { url: 'templates/ui.accordion.data.html' }, + destroy: '$("#accordionDemo").accordion("destroy");', + + options: [ + { desc: 'Simple Accordion Mouse over', source: '$("#accordionDemo").accordion({event: "mouseover"});' }, + { desc: 'Simple Accordion', source: '$("#accordionDemo").accordion();' } + ] + } + ] + + }; + + $(function(){ + + uiRenderDemo(model); + + }); + +</script>
\ No newline at end of file |