aboutsummaryrefslogtreecommitdiffstats
path: root/include/jquery_ui/development-bundle/demos/accordion/no-auto-height.html
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-09 23:23:20 -0700
committerfriendica <info@friendica.com>2012-07-09 23:23:20 -0700
commit1215de575d9cda66b434f21dafdf44f986638b71 (patch)
tree6bc706e2b5575c537ba41c1c511c5ac21c169d70 /include/jquery_ui/development-bundle/demos/accordion/no-auto-height.html
parent5355193b6342910ec69ec172846027ac9353d2b3 (diff)
downloadvolse-hubzilla-1215de575d9cda66b434f21dafdf44f986638b71.tar.gz
volse-hubzilla-1215de575d9cda66b434f21dafdf44f986638b71.tar.bz2
volse-hubzilla-1215de575d9cda66b434f21dafdf44f986638b71.zip
slider
Diffstat (limited to 'include/jquery_ui/development-bundle/demos/accordion/no-auto-height.html')
-rw-r--r--include/jquery_ui/development-bundle/demos/accordion/no-auto-height.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/include/jquery_ui/development-bundle/demos/accordion/no-auto-height.html b/include/jquery_ui/development-bundle/demos/accordion/no-auto-height.html
new file mode 100644
index 000000000..d6694846f
--- /dev/null
+++ b/include/jquery_ui/development-bundle/demos/accordion/no-auto-height.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Accordion - No auto height</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.7.2.js"></script>
+ <script src="../../ui/jquery.ui.core.js"></script>
+ <script src="../../ui/jquery.ui.widget.js"></script>
+ <script src="../../ui/jquery.ui.accordion.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <script>
+ $(function() {
+ $( "#accordion" ).accordion({
+ autoHeight: false,
+ navigation: true
+ });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<div id="accordion">
+ <h3><a href="#section1">Section 1</a></h3>
+ <div>
+ <p>Mauris mauris ante, blandit et, ultrices a, susceros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.</p>
+ </div>
+ <h3><a href="#section2">Section 2</a></h3>
+ <div>
+ <p>Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna. </p>
+ </div>
+ <h3><a href="#section3">Section 3</a></h3>
+ <div>
+ <p>Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui. </p>
+ <ul>
+ <li>List item</li>
+ <li>List item</li>
+ <li>List item</li>
+ <li>List item</li>
+ <li>List item</li>
+ <li>List item</li>
+ <li>List item</li>
+ </ul>
+ <a href="#othercontent">Link to other content</a>
+ </div>
+</div>
+
+</div><!-- End demo -->
+
+
+
+<div class="demo-description">
+<p>Setting <code>autoHeight: false</code> allows to accordion panels to keep their native height.</p>
+<p>In addition, the <code>navigation</code> option is enabled, opening the panel based on the current location, eg. no-auto-height.html#panel2 would open the second panel on page load. It also finds anchors within the content, so #othercontent will open the third section, as it contains a link with that href.</p>
+</div><!-- End demo-description -->
+
+</body>
+</html>