aboutsummaryrefslogtreecommitdiffstats
path: root/demos/dialog/buttons.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/buttons.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/buttons.html')
-rw-r--r--demos/dialog/buttons.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/demos/dialog/buttons.html b/demos/dialog/buttons.html
deleted file mode 100644
index 309f2e835..000000000
--- a/demos/dialog/buttons.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Dialog - Buttons Demo</title>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.2.6.js"></script>
- <script type="text/javascript" src="../../ui/ui.core.js"></script>
- <script type="text/javascript" src="../../ui/ui.draggable.js"></script>
- <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
- <script type="text/javascript" src="../../ui/ui.dialog.js"></script>
- <script type="text/javascript">
- $(function() {
- $("#dialog").dialog({
- buttons: {
- Ok: function() {
- alert('You clicked Ok!');
- },
- Cancel: function() {
- alert('You clicked Cancel. The dialog will now close.');
- $(this).dialog('close');
- }
- }
- });
- });
- </script>
-</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>
-
-</body>
-</html>