aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2014-04-24 20:11:05 +0200
committerJörn Zaefferer <joern.zaefferer@gmail.com>2014-04-24 20:11:07 +0200
commit905c5dbf19511c49e93484e81f8c8fd3c315072c (patch)
treefe127936fd467000b3a224ee6942aa418acf5916 /demos/resizable
parent22de101e406c49697fee54a778f94d3535750342 (diff)
downloadjquery-ui-905c5dbf19511c49e93484e81f8c8fd3c315072c.tar.gz
jquery-ui-905c5dbf19511c49e93484e81f8c8fd3c315072c.zip
Demos: Delete useless interactions demos
All three delay-start demos use by examples for distance and delay while the default works fine. The connected-through tabs demo is just ridiculous.
Diffstat (limited to 'demos/resizable')
-rw-r--r--demos/resizable/delay-start.html45
-rw-r--r--demos/resizable/index.html1
2 files changed, 0 insertions, 46 deletions
diff --git a/demos/resizable/delay-start.html b/demos/resizable/delay-start.html
deleted file mode 100644
index 96bbf56ee..000000000
--- a/demos/resizable/delay-start.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Resizable - Delay start</title>
- <link rel="stylesheet" href="../../themes/base/all.css">
- <script src="../../jquery.js"></script>
- <script src="../../ui/core.js"></script>
- <script src="../../ui/widget.js"></script>
- <script src="../../ui/mouse.js"></script>
- <script src="../../ui/resizable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #resizable, #resizable2 { width: 150px; height: 150px; padding: 0.5em; }
- #resizable h3, #resizable2 h3 { text-align: center; margin: 0; }
- </style>
- <script>
- $(function() {
- $( "#resizable" ).resizable({
- delay: 1000
- });
-
- $( "#resizable2" ).resizable({
- distance: 40
- });
- });
- </script>
-</head>
-<body>
-
-<h3 class="docs">Time delay (ms):</h3>
-<div id="resizable" class="ui-widget-content">
- <h3 class="ui-widget-header">Time</h3>
-</div>
-
-<h3 class="docs">Distance delay (px):</h3>
-<div id="resizable2" class="ui-widget-content">
- <h3 class="ui-widget-header">Distance</h3>
-</div>
-
-<div class="demo-description">
-<p>Delay the start of resizing for a number of milliseconds with the <code>delay</code> option; prevent resizing until the cursor is held down and dragged a specifed number of pixels with the <code>distance</code> option.</p>
-</div>
-</body>
-</html>
diff --git a/demos/resizable/index.html b/demos/resizable/index.html
index 28114741a..568c9cb57 100644
--- a/demos/resizable/index.html
+++ b/demos/resizable/index.html
@@ -12,7 +12,6 @@
<li><a href="aspect-ratio.html">Preserve aspect ratio</a></li>
<li><a href="max-min.html">Maximum / minimum size</a></li>
<li><a href="constrain-area.html">Constrain resize area</a></li>
- <li><a href="delay-start.html">Delay start</a></li>
<li><a href="snap-to-grid.html">Snap to grid</a></li>
<li><a href="visual-feedback.html">Visual feedback</a></li>
<li><a href="synchronous-resize.html">Synchronous resize</a></li>