]> source.dussan.org Git - jquery-ui.git/commitdiff
Demos: Delete useless interactions demos
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Thu, 24 Apr 2014 18:11:05 +0000 (20:11 +0200)
committerJörn Zaefferer <joern.zaefferer@gmail.com>
Thu, 24 Apr 2014 18:11:07 +0000 (20:11 +0200)
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.

demos/draggable/delay-start.html [deleted file]
demos/draggable/index.html
demos/resizable/delay-start.html [deleted file]
demos/resizable/index.html
demos/sortable/connect-lists-through-tabs.html [deleted file]
demos/sortable/delay-start.html [deleted file]
demos/sortable/index.html

diff --git a/demos/draggable/delay-start.html b/demos/draggable/delay-start.html
deleted file mode 100644 (file)
index 2464993..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-       <meta charset="utf-8">
-       <title>jQuery UI Draggable - 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/draggable.js"></script>
-       <link rel="stylesheet" href="../demos.css">
-       <style>
-       #draggable, #draggable2 { width: 120px; height: 120px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
-       </style>
-       <script>
-       $(function() {
-               $( "#draggable" ).draggable({ distance: 20 });
-               $( "#draggable2" ).draggable({ delay: 1000 });
-               $( ".ui-draggable" ).disableSelection();
-       });
-       </script>
-</head>
-<body>
-
-<div id="draggable" class="ui-widget-content">
-       <p>Only if you drag me by 20 pixels, the dragging will start</p>
-</div>
-
-<div id="draggable2" class="ui-widget-content">
-       <p>Regardless of the distance, you have to drag and wait for 1000ms before dragging starts</p>
-</div>
-
-<div class="demo-description">
-<p>Delay the start of dragging for a number of milliseconds with the <code>delay</code> option; prevent dragging until the cursor is held down and dragged a specifed number of pixels with the <code>distance</code> option. </p>
-</div>
-</body>
-</html>
index 48d050b1e7e2450f4ebfbea75e8f48276e9e4198..ceffb9b72d4ea592a3dbc95a6113f8a0be8acd74 100644 (file)
@@ -11,7 +11,6 @@
        <li><a href="default.html">Default functionality</a></li>
        <li><a href="events.html">Events</a></li>
        <li><a href="constrain-movement.html">Constrain movement</a></li>
-       <li><a href="delay-start.html">Delay start</a></li>
        <li><a href="snap-to.html">Snap to element or grid</a></li>
        <li><a href="scroll.html">Auto-scroll</a></li>
        <li><a href="revert.html">Revert position</a></li>
diff --git a/demos/resizable/delay-start.html b/demos/resizable/delay-start.html
deleted file mode 100644 (file)
index 96bbf56..0000000
+++ /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>
index 28114741a12ccdfe0bd0745d63a7673946de5a57..568c9cb57e45cd66e4bfb5d86e8b81c00403888c 100644 (file)
@@ -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>
diff --git a/demos/sortable/connect-lists-through-tabs.html b/demos/sortable/connect-lists-through-tabs.html
deleted file mode 100644 (file)
index fc29f9d..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-       <meta charset="utf-8">
-       <title>jQuery UI Sortable - Connect lists with Tabs</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/sortable.js"></script>
-       <script src="../../ui/droppable.js"></script>
-       <script src="../../ui/tabs.js"></script>
-       <link rel="stylesheet" href="../demos.css">
-       <style>
-       #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 120px; }
-       </style>
-       <script>
-       $(function() {
-               $( "#sortable1, #sortable2" ).sortable().disableSelection();
-
-               var $tabs = $( "#tabs" ).tabs();
-
-               var $tab_items = $( "ul:first li", $tabs ).droppable({
-                       accept: ".connectedSortable li",
-                       hoverClass: "ui-state-hover",
-                       drop: function( event, ui ) {
-                               var $item = $( this );
-                               var $list = $( $item.find( "a" ).attr( "href" ) )
-                                       .find( ".connectedSortable" );
-
-                               ui.draggable.hide( "slow", function() {
-                                       $tabs.tabs( "option", "active", $tab_items.index( $item ) );
-                                       $( this ).appendTo( $list ).show( "slow" );
-                               });
-                       }
-               });
-       });
-       </script>
-</head>
-<body>
-
-<div id="tabs">
-       <ul>
-               <li><a href="#tabs-1">Nunc tincidunt</a></li>
-               <li><a href="#tabs-2">Proin dolor</a></li>
-       </ul>
-       <div id="tabs-1">
-               <ul id="sortable1" class="connectedSortable ui-helper-reset">
-                       <li class="ui-state-default">Item 1</li>
-                       <li class="ui-state-default">Item 2</li>
-                       <li class="ui-state-default">Item 3</li>
-                       <li class="ui-state-default">Item 4</li>
-                       <li class="ui-state-default">Item 5</li>
-               </ul>
-       </div>
-       <div id="tabs-2">
-               <ul id="sortable2" class="connectedSortable ui-helper-reset">
-                       <li class="ui-state-highlight">Item 1</li>
-                       <li class="ui-state-highlight">Item 2</li>
-                       <li class="ui-state-highlight">Item 3</li>
-                       <li class="ui-state-highlight">Item 4</li>
-                       <li class="ui-state-highlight">Item 5</li>
-               </ul>
-       </div>
-</div>
-
-<div class="demo-description">
-<p>Sort items from one list into another and vice versa, by dropping the list item on the appropriate tab above.</p>
-</div>
-</body>
-</html>
diff --git a/demos/sortable/delay-start.html b/demos/sortable/delay-start.html
deleted file mode 100644 (file)
index 44bf0c8..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-       <meta charset="utf-8">
-       <title>jQuery UI Sortable - 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/sortable.js"></script>
-       <link rel="stylesheet" href="../demos.css">
-       <style>
-       #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; margin-bottom: 15px;zoom: 1; }
-       #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 95%; }
-       </style>
-       <script>
-       $(function() {
-               $( "#sortable1" ).sortable({
-                       delay: 300
-               });
-
-               $( "#sortable2" ).sortable({
-                       distance: 15
-               });
-
-               $( "li" ).disableSelection();
-       });
-       </script>
-</head>
-<body>
-
-<h3 class="docs">Time delay of 300ms:</h3>
-
-<ul id="sortable1">
-       <li class="ui-state-default">Item 1</li>
-       <li class="ui-state-default">Item 2</li>
-       <li class="ui-state-default">Item 3</li>
-       <li class="ui-state-default">Item 4</li>
-</ul>
-
-<h3 class="docs">Distance delay of 15px:</h3>
-
-<ul id="sortable2">
-       <li class="ui-state-default">Item 1</li>
-       <li class="ui-state-default">Item 2</li>
-       <li class="ui-state-default">Item 3</li>
-       <li class="ui-state-default">Item 4</li>
-</ul>
-
-<div class="demo-description">
-<p>
-       Prevent accidental sorting either by delay (time) or distance. Set a number of
-       milliseconds the element needs to be dragged before sorting starts
-       with the <code>delay</code> option. Set a distance in pixels the element
-       needs to be dragged before sorting starts with the <code>distance</code>
-       option.
-</p>
-</div>
-</body>
-</html>
index 0ca94044fd915c2bb41037cf85c3d5ac4e4e9413..022da81d2b6194a10d74f4e390e41e1477a04d5b 100644 (file)
        <li><a href="default.html">Default functionality</a></li>
        <li><a href="placeholder.html">Drop placeholder</a></li>
        <li><a href="connect-lists.html">Connect lists</a></li>
-       <li><a href="connect-lists-through-tabs.html">Connect lists through tabs</a></li>
        <li><a href="empty-lists.html">Handle empty lists</a></li>
        <li><a href="items.html">Include / exclude items</a></li>
-       <li><a href="delay-start.html">Delay start</a></li>
        <li><a href="display-grid.html">Display as grid</a></li>
        <li><a href="portlets.html">Portlets</a></li>
 </ul>