]> 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 20:09:55 +0000 (20:09 +0000)
committerMaggie Costello Wachs <fg.maggie@gmail.com>
Tue, 20 Jan 2009 20:09:55 +0000 (20:09 +0000)
demos/dialog/default.html
demos/dialog/index.html
demos/dialog/modal.html
demos/dialog/modal_confirmation.html
demos/dialog/modal_form.html
demos/dialog/modal_message.html

index 08043d15b0dcb5830bc79e52503a2adf41cb2a5d..79bd0157fb05d02d33d4e51729ce62a3534cce84 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Dialog - Default Demo</title>
+       <title>jQuery UI Dialog - 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>
 
 <div class="demo-description">
 
-<p>
-This is a default dialog which opens in a floating layer above the page content protected with an iframe.
-It is created by simply calling .dialog on the dialog content element, like this:
-</p>
-
-<pre><code>$("#dialog").dialog();
-</code></pre>
-
-<p>
-A basic dialog window has a title bar and a content area. The dialog window can be moved, resized and closed with the 'x' icon by default.
-</p>
+<p>The basic dialog window is an overlay positioned within the viewport and is protected from page content (like select elements) shining through with an iframe.  It has a title bar and a content area, and can be moved, resized and closed with the 'x' icon by default.</p>
 
 </div><!-- End demo-description -->
 
index a9a9bf070e31f51eda53eed971ed1893a5f79dae..28628a08547b864d1af02663b905b807567f4e19 100644 (file)
@@ -9,7 +9,7 @@
 <div class="demos-nav">
        <h4>Examples</h4>
        <ul>
-               <li class="demo-config-on"><a href="default.html">Default Dialog</a></li>
+               <li class="demo-config-on"><a href="default.html">Default functionality</a></li>
                <li><a href="modal.html">Modal dialog</a></li>
                <li><a href="modal_message.html">Modal message</a></li>
                <li><a href="modal_confirmation.html">Modal confirmation</a></li>
index 52cf8b220598931ecce98ef96e0b052aada71799..6bde93f457da8b0f738ea58c89690f44308a840b 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Dialog - Modal Demo</title>
+       <title>jQuery UI Dialog - Basic modal</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 is a simple modal dialog with a semi-transparent overlay layer added as an option to dim out the page content behind it and bring the user's attention to the dialog.
-A modal dialog prevents the user from interacting with the rest of the page until it is closed.
-</p>
-
-<p>
-The dialog window can be moved, resized and closed with the 'x' icon.
-</p>
+<p>A modal dialog prevents the user from interacting with the rest of the page until it is closed.  To add a semi-transparent layer that dims out the page content behind the dialog, set the background color and opacity of the <strong>overlay</strong> option.</p>
 
 </div><!-- End demo-description -->
 
index 5ffeaa1394b64776699a9f6168af878713795172..ae036499e3c5cfb08d479adf66fd7166f6d6bba0 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Dialog - Modal Confirmation Demo</title>
+       <title>jQuery UI Dialog - Modal confirmation</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 type of dialog adds a button bar and is useful for confirming an action that may be destructive or important.
-These are typically displayed as modal dialogs to get the user's attention and force a decision before continuing.
-This example uses an icon from the css sprite set and is set to be not resizable by setting the resizable option to false.
-</p>
+<p>Confirm an action that may be destructive or important.  Set the <strong>modal</strong> option to true, and specify primary and secondary user actions with the <strong>buttons</strong> option.</p>
 
 </div><!-- End demo-description -->
 
index ecd9fd8b01b54d1d162f662fa5457d0430170f8c..31ed9b746f80c4aa8ab97690ebea4ec3a840d0d4 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Dialog - Modal Form Demo</title>
+       <title>jQuery UI Dialog - Modal form</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 is an example of how a dialog can be used for data entry by making it larger and embedding a form into the content area.
-A multi-step wizard could be created by extending this with a step navigation and forward and back buttons.
-</p>
+<p>Use a modal dialog to require that the user enter data during a multi-step process.  Embed form markup in the content area, set the <strong>modal</strong> option to true, and specify primary and secondary user actions with the <strong>buttons</strong> option.</p>
 
 </div><!-- End demo-description -->
 
index fbdc4de99c1262da4b96c9f5320a89ee34b2ee79..8483dec16a43af8fe18c591cf0debb8ef95064a3 100644 (file)
@@ -1,7 +1,7 @@
 <!doctype html>
 <html lang="en">
 <head>
-       <title>jQuery UI Dialog - Modal Message Demo</title>
+       <title>jQuery UI Dialog - Modal message</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>
-A modal message dialog like this is useful for providing information to the user that requires them to explicitly acknowledge before continuing with their work.
-</p>
-
-<p>
-This example adds a button bar with a single 'Ok' button to dismiss the dialog.
-</p>
+<p>Use a modal dialog to explicitly acknowledge information or an action before continuing their work.  Set the <strong>modal</strong> option to true, and specify a primary action (Ok) with the <strong>buttons</strong> option.</p>
 
 </div><!-- End demo-description -->