aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorKlaus Hartl <klaus.hartl@googlemail.com>2009-02-05 07:27:20 +0000
committerKlaus Hartl <klaus.hartl@googlemail.com>2009-02-05 07:27:20 +0000
commit270769a7abf8c3a23788c560bae90e96fcfb39f7 (patch)
tree383d2ad2765513541bb1ca30d2e6017c7484973f /demos
parent8fe45c45f1d7aa11e841e3ff1d962adbc58fc3da (diff)
downloadjquery-ui-270769a7abf8c3a23788c560bae90e96fcfb39f7.tar.gz
jquery-ui-270769a7abf8c3a23788c560bae90e96fcfb39f7.zip
Tabs demo: use collapsible instead of deprecated deselectable option
Diffstat (limited to 'demos')
-rw-r--r--demos/tabs/collapsible.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/tabs/collapsible.html b/demos/tabs/collapsible.html
index 4c2646d15..d7f1a37b1 100644
--- a/demos/tabs/collapsible.html
+++ b/demos/tabs/collapsible.html
@@ -10,7 +10,7 @@
<script type="text/javascript">
$(function() {
$("#tabs").tabs({
- deselectable: true
+ collapsible: true
});
});
</script>
@@ -43,9 +43,9 @@
<div class="demo-description">
-<p>Click the selected tab to toggle its content closed/open. To enable this functionality, set the <code>deselectable</code> option to true.</p>
+<p>Click the selected tab to toggle its content closed/open. To enable this functionality, set the <code>collapsible</code> option to true.</p>
-<pre><code>deselectable: true
+<pre><code>collapsible: true
</code></pre>
</div><!-- End demo-description -->