]> source.dussan.org Git - jquery-ui.git/commitdiff
slightly reorganized/renamed demos to better reflect functionality
authorMaggie Costello Wachs <fg.maggie@gmail.com>
Tue, 20 Jan 2009 21:30:24 +0000 (21:30 +0000)
committerMaggie Costello Wachs <fg.maggie@gmail.com>
Tue, 20 Jan 2009 21:30:24 +0000 (21:30 +0000)
demos/tabs/ajax.html
demos/tabs/collapsible.html
demos/tabs/default.html
demos/tabs/index.html
demos/tabs/mouseover.html

index a76270dbe122e7d5b35bd9da42721334892cf881..c1bcadc7d8ca71010d73d08ec3d43aca3336090b 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Tabs - Ajax Demo</title>
+       <title>jQuery UI Tabs - Content via Ajax</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
 
 <div class="demo-description">
 
-<p>
-This example fetches in external content via Ajax for the 2nd and 3rd tabs just by setting an href for the tabs.
-While the Ajax request is waiting for a response, the tab label changes to say "Loading...", then returns to the normal label once loaded.
-</p>
+<p>Fetch external content via Ajax for the 2nd and 3rd tabs by setting an href for the tabs.  While the Ajax request is waiting for a response, the tab label changes to say "Loading...", then returns to the normal label once loaded.</p>
 
 </div><!-- End demo-description -->
 
index 12b820556e8e968aad616a169d3fb01f951bc692..7913e2e2d5a749c76b7b530ae0a2c150acd17eeb 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Tabs - Collapsible Demo</title>
+       <title>jQuery UI Tabs - Collapse content</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
@@ -43,9 +43,7 @@
 
 <div class="demo-description">
 
-<p>
-This example allows the tab strip to be toggled closed by setting the delectable option to true like this:
-</p>
+<p>Click the selected tab to toggle its content closed/open.  To enable this functionality, set the <strong>deselectable</strong> option to true.</p>
 
 <pre><code>deselectable: true
 </code></pre>
index 1a8eb6194538ae062d8f062e2744d3ab8c843c19..2cee36b5bef52cc86e9edd3a72a1e94d5ceaab73 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Tabs - Default Demo</title>
+       <title>jQuery UI Tabs - Default functionality</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
@@ -39,9 +39,7 @@
 
 <div class="demo-description">
 
-<p>
-This is the basic default tab strip that swaps between different blocks of content.
-</p>
+<p>Click tabs to swap between content that is broken into logical sections.</p>
 
 </div><!-- End demo-description -->
 
index bcd037c679414d8670a7aa98753373e29e723d53..5742a807712dcfd915a8ae840b15c36fc0c5dd9a 100644 (file)
@@ -9,10 +9,10 @@
 <div class="demos-nav">
        <h4>Examples</h4>
        <ul>
-               <li class="demo-config-on"><a href="default.html">Default Tabs</a></li>
-               <li><a href="ajax.html">Ajax</a></li>
-               <li><a href="collapsible.html">Collapsible</a></li>
-               <li><a href="mouseover.html">Mouseover event</a></li>
+               <li class="demo-config-on"><a href="default.html">Default functionality</a></li>
+               <li><a href="ajax.html">Content via Ajax</a></li>
+               <li><a href="mouseover.html">Open on mouseover</a></li>
+               <li><a href="collapsible.html">Collapse content</a></li>                
        </ul>
 </div>
 
index 12b0be70fba3bb59fba2f5383d7e2d4760b0dcf2..ce2e866c3a4eae0bd11078310d25ac60fbcf4612 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Tabs - Mouseover Demo</title>
+       <title>jQuery UI Tabs - Open on mouseover</title>
        <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
        <script type="text/javascript" src="../../jquery-1.3.js"></script>
        <script type="text/javascript" src="../../ui/ui.core.js"></script>
@@ -41,9 +41,7 @@
 
 <div class="demo-description">
 
-<p>
-This example changes the default swap event from a click to mouseover by changing the event option:
-</p>
+<p>Toggle sections open/closed on mouseover with the <strong>event</strong> option. The default value for event is "click."</p>
 
 <pre><code>event: 'mouseover'
 </code></pre>