diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-31 23:29:44 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-31 23:29:44 +0000 |
commit | 3e0d2e4a6b5d279b322bba5ff636b1ffde033414 (patch) | |
tree | 45a2ae148ea9bd71d83c10e539896e547dc08e95 /demos/draggable | |
parent | 16dafba1404698c2e6a590f82877ab62cee0700c (diff) | |
download | jquery-ui-3e0d2e4a6b5d279b322bba5ff636b1ffde033414.tar.gz jquery-ui-3e0d2e4a6b5d279b322bba5ff636b1ffde033414.zip |
mime-type and eol-style
Diffstat (limited to 'demos/draggable')
-rw-r--r-- | demos/draggable/containment_iframe.html | 96 |
1 files changed, 48 insertions, 48 deletions
diff --git a/demos/draggable/containment_iframe.html b/demos/draggable/containment_iframe.html index 3361ef647..6b4a6cb3f 100644 --- a/demos/draggable/containment_iframe.html +++ b/demos/draggable/containment_iframe.html @@ -1,48 +1,48 @@ -<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Draggable - Containment Demo</title>
- <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>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
- .ui-widget-content { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 5px; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#draggable").draggable({ containment: 'window', scroll: false });
- $("#draggable2").draggable({ containment: 'document' });
- $("#draggable3").draggable({ containment: 'parent' });
- });
- </script>
-</head>
-<body>
-<div class="demo">
-
-<div id="draggable" class="ui-widget-content">
- <p>I'm contained within the window</p>
-</div>
-
-<div id="draggable2" class="ui-widget-content">
- <p>I'm contained within the document</p>
-</div>
-
-<div class="ui-widget-content">
- <p id="draggable3" class='ui-widget-header'>I'm contained within my parent</p>
-</div>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>
-<!-- Add description here -->
-</p>
-
-</div><!-- End demo-description -->
-<div style='width: 1px; height: 500px;'></div>
-
-</body>
-</html>
+<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Draggable - Containment Demo</title> + <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> + <link type="text/css" href="../demos.css" rel="stylesheet" /> + <style type="text/css"> + .ui-widget-content { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 5px; } + </style> + <script type="text/javascript"> + $(function() { + $("#draggable").draggable({ containment: 'window', scroll: false }); + $("#draggable2").draggable({ containment: 'document' }); + $("#draggable3").draggable({ containment: 'parent' }); + }); + </script> +</head> +<body> +<div class="demo"> + +<div id="draggable" class="ui-widget-content"> + <p>I'm contained within the window</p> +</div> + +<div id="draggable2" class="ui-widget-content"> + <p>I'm contained within the document</p> +</div> + +<div class="ui-widget-content"> + <p id="draggable3" class='ui-widget-header'>I'm contained within my parent</p> +</div> + +</div><!-- End demo --> + +<div class="demo-description"> + +<p> +<!-- Add description here --> +</p> + +</div><!-- End demo-description --> +<div style='width: 1px; height: 500px;'></div> + +</body> +</html> |