aboutsummaryrefslogtreecommitdiffstats
path: root/demos/dialog/default.html
diff options
context:
space:
mode:
authorTodd Parker <fg.todd@gmail.com>2008-12-29 17:26:17 +0000
committerTodd Parker <fg.todd@gmail.com>2008-12-29 17:26:17 +0000
commit9f91a25ca3945be7f06947b1a3eafc19eb8195de (patch)
tree1feade8733c044b33a6feb9f200c26ccf5776702 /demos/dialog/default.html
parent622f34aeb9b18fd9c891721547e8d030bafdf01f (diff)
downloadjquery-ui-9f91a25ca3945be7f06947b1a3eafc19eb8195de.tar.gz
jquery-ui-9f91a25ca3945be7f06947b1a3eafc19eb8195de.zip
Re-vamped set of dialog examples that shows the standard set of dialog types. Removed button.html because it was expanded into the 3 modal types.
Diffstat (limited to 'demos/dialog/default.html')
-rw-r--r--demos/dialog/default.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/demos/dialog/default.html b/demos/dialog/default.html
index 828aae916..35fc392f2 100644
--- a/demos/dialog/default.html
+++ b/demos/dialog/default.html
@@ -17,8 +17,9 @@
</head>
<body>
-<div id="dialog" title="Curabitur augue">
- <p>Sed vel diam id libero rutrum convallis. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>
+<div id="dialog" title="Basic dialog">
+ <p>This is the default dialog which is useful for displaying information. It is created by simply calling .dialog on the ID of the content like this: <pre>$("#dialog").dialog();</pre></p>
+ <p>If the content exceeds the size of the window, a scrollbar will automatically appear. The dialog window can be moved, resized and closed with the 'x' icon by default. </p>
</div>
</body>