diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-04-24 20:11:05 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-04-24 20:11:07 +0200 |
commit | 905c5dbf19511c49e93484e81f8c8fd3c315072c (patch) | |
tree | fe127936fd467000b3a224ee6942aa418acf5916 /demos | |
parent | 22de101e406c49697fee54a778f94d3535750342 (diff) | |
download | jquery-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')
-rw-r--r-- | demos/draggable/delay-start.html | 38 | ||||
-rw-r--r-- | demos/draggable/index.html | 1 | ||||
-rw-r--r-- | demos/resizable/delay-start.html | 45 | ||||
-rw-r--r-- | demos/resizable/index.html | 1 | ||||
-rw-r--r-- | demos/sortable/connect-lists-through-tabs.html | 72 | ||||
-rw-r--r-- | demos/sortable/delay-start.html | 61 | ||||
-rw-r--r-- | demos/sortable/index.html | 2 |
7 files changed, 0 insertions, 220 deletions
diff --git a/demos/draggable/delay-start.html b/demos/draggable/delay-start.html deleted file mode 100644 index 2464993cd..000000000 --- a/demos/draggable/delay-start.html +++ /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> diff --git a/demos/draggable/index.html b/demos/draggable/index.html index 48d050b1e..ceffb9b72 100644 --- a/demos/draggable/index.html +++ b/demos/draggable/index.html @@ -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 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> diff --git a/demos/sortable/connect-lists-through-tabs.html b/demos/sortable/connect-lists-through-tabs.html deleted file mode 100644 index fc29f9d0d..000000000 --- a/demos/sortable/connect-lists-through-tabs.html +++ /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 index 44bf0c8dd..000000000 --- a/demos/sortable/delay-start.html +++ /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> diff --git a/demos/sortable/index.html b/demos/sortable/index.html index 0ca94044f..022da81d2 100644 --- a/demos/sortable/index.html +++ b/demos/sortable/index.html @@ -11,10 +11,8 @@ <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> |