aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable/containment.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/resizable/containment.html')
-rw-r--r--demos/resizable/containment.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/demos/resizable/containment.html b/demos/resizable/containment.html
deleted file mode 100644
index b885f57d0..000000000
--- a/demos/resizable/containment.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <title>jQuery UI Resizable - Containment Demo</title>
- <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.3.1.js"></script>
- <script type="text/javascript" src="../../ui/ui.core.js"></script>
- <script type="text/javascript" src="../../ui/ui.resizable.js"></script>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
- #container { width: 300px; height: 300px; }
- #container h3 { text-align: center; margin: 0; margin-bottom: 10px; }
- #resizable { background-position: top left; width: 150px; height: 150px; }
- #resizable, #container { padding: 0.5em; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#resizable").resizable({
- containment: '#container'
- });
- });
- </script>
-</head>
-<body>
-<div class="demo">
-
-<div id="container" class="ui-widget-content">
- <h3 class="ui-widget-header">Containment</h3>
- <div id="resizable" class="ui-state-active">
- <h3 class="ui-widget-header">Resizable</h3>
- </div>
-</div>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>
-<!-- Add description here -->
-</p>
-
-</div><!-- End demo-description -->
-</body>
-</html>