diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-30 04:16:51 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-30 04:16:51 +0000 |
commit | 165c6a823cd0473d5207fada539da42eb9d01274 (patch) | |
tree | b22b23271c9195940e39f04f0b6bf5adba12de59 /demos/dialog | |
parent | 5b34c56dbd5a8544dc9125c5626f0f33639c68b7 (diff) | |
download | jquery-ui-165c6a823cd0473d5207fada539da42eb9d01274.tar.gz jquery-ui-165c6a823cd0473d5207fada539da42eb9d01274.zip |
set svn:eol-style to native
Diffstat (limited to 'demos/dialog')
-rw-r--r-- | demos/dialog/default.html | 52 | ||||
-rw-r--r-- | demos/dialog/index.html | 38 |
2 files changed, 45 insertions, 45 deletions
diff --git a/demos/dialog/default.html b/demos/dialog/default.html index 35fc392f2..a51238401 100644 --- a/demos/dialog/default.html +++ b/demos/dialog/default.html @@ -1,26 +1,26 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Dialog - Default 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();
- });
- </script>
-</head>
-<body>
-
-<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>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Dialog - Default 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(); + }); + </script> +</head> +<body> + +<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> +</html> diff --git a/demos/dialog/index.html b/demos/dialog/index.html index fd0b608bd..64f6343f4 100644 --- a/demos/dialog/index.html +++ b/demos/dialog/index.html @@ -1,19 +1,19 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Dialog Demos</title>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
-</head>
-<body>
-
-<dl class="demos-nav">
- <dt>Dialog</dt>
- <dd><a href="default.html">Basic dialog (default)</a></dd>
- <dd><a href="modal.html">Modal dialog</a></dd>
- <dd><a href="modal_message.html">Modal message</a></dd>
- <dd><a href="modal_confirmation.html">Modal confirmation</a></dd>
- <dd><a href="modal_form.html">Modal form</a></dd>
-</dl>
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Dialog Demos</title> + <link type="text/css" href="../demos.css" rel="stylesheet" /> +</head> +<body> + +<dl class="demos-nav"> + <dt>Dialog</dt> + <dd><a href="default.html">Basic dialog (default)</a></dd> + <dd><a href="modal.html">Modal dialog</a></dd> + <dd><a href="modal_message.html">Modal message</a></dd> + <dd><a href="modal_confirmation.html">Modal confirmation</a></dd> + <dd><a href="modal_form.html">Modal form</a></dd> +</dl> + +</body> +</html> |