Changeset 5048 for trunk/plugins/accordion/demo
- Timestamp:
- 03/17/08 09:23:12 (9 months ago)
- Files:
-
- 1 modified
-
trunk/plugins/accordion/demo/index.html (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/accordion/demo/index.html
r4878 r5048 19 19 jQuery('#list1a').accordion(); 20 20 jQuery('#list1b').accordion({ 21 auto height: false21 autoHeight: false 22 22 }); 23 23 … … 39 39 animated: "bounceslide", 40 40 header: "dt" 41 }).bind("change .ui-accordion", function(event, ui) {41 }).bind("changeaccordion", function(event, ui) { 42 42 jQuery('<div>' + ui.oldHeader.text() + ' hidden, ' + ui.newHeader.text() + ' shown</div>').appendTo('#log'); 43 43 }); … … 49 49 alwaysOpen: false, 50 50 animated: false, 51 auto height: false51 autoHeight: false 52 52 }); 53 53 … … 106 106 <pre><code class="mix">jQuery('#list1a').accordion(); 107 107 jQuery('#list1b').accordion({ 108 auto height: false108 autoHeight: false 109 109 });</code></pre> 110 110 … … 277 277 alwaysOpen: false, 278 278 animated: false, 279 auto height: false279 autoHeight: false 280 280 });</code></pre> 281 281
