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/sortable | |
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/sortable')
-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 |
3 files changed, 0 insertions, 135 deletions
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> |