aboutsummaryrefslogtreecommitdiffstats
path: root/include/jquery_ui/development-bundle/demos/droppable
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-10-22 19:46:18 -0700
committerfriendica <info@friendica.com>2012-10-22 19:46:18 -0700
commita7abe24382bac00243fd19ebc2cdde87569eab79 (patch)
tree2e802f3357af5e13407241e1c94a17f5e7962517 /include/jquery_ui/development-bundle/demos/droppable
parent896ca97330f86afe3ab9c7a07ae6d1676c1a546a (diff)
downloadvolse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.gz
volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.bz2
volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.zip
more file cleanup
Diffstat (limited to 'include/jquery_ui/development-bundle/demos/droppable')
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/accepted-elements.html60
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/default.html53
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/images/high_tatras.jpgbin22994 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/images/high_tatras2.jpgbin25619 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/images/high_tatras2_min.jpgbin2164 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/images/high_tatras3.jpgbin24583 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/images/high_tatras3_min.jpgbin1901 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/images/high_tatras4.jpgbin24870 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/images/high_tatras4_min.jpgbin2541 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/images/high_tatras_min.jpgbin2147 -> 0 bytes
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/index.html24
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/photo-manager.html184
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/propagation.html80
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/revert.html61
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/shopping-cart.html101
-rw-r--r--include/jquery_ui/development-bundle/demos/droppable/visual-feedback.html78
16 files changed, 0 insertions, 641 deletions
diff --git a/include/jquery_ui/development-bundle/demos/droppable/accepted-elements.html b/include/jquery_ui/development-bundle/demos/droppable/accepted-elements.html
deleted file mode 100644
index 7e8451571..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/accepted-elements.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Droppable - Accept</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.mouse.js"></script>
- <script src="../../ui/jquery.ui.draggable.js"></script>
- <script src="../../ui/jquery.ui.droppable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
- #draggable, #draggable-nonvalid { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
- </style>
- <script>
- $(function() {
- $( "#draggable, #draggable-nonvalid" ).draggable();
- $( "#droppable" ).droppable({
- accept: "#draggable",
- activeClass: "ui-state-hover",
- hoverClass: "ui-state-active",
- drop: function( event, ui ) {
- $( this )
- .addClass( "ui-state-highlight" )
- .find( "p" )
- .html( "Dropped!" );
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div id="draggable-nonvalid" class="ui-widget-content">
- <p>I'm draggable but can't be dropped</p>
-</div>
-
-<div id="draggable" class="ui-widget-content">
- <p>Drag me to my target</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
- <p>accept: '#draggable'</p>
-</div>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Specify using the <code>accept</code> option which element (or group of elements) is accepted by the target droppable.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/droppable/default.html b/include/jquery_ui/development-bundle/demos/droppable/default.html
deleted file mode 100644
index 61e9c08ac..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/default.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Droppable - Default functionality</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.mouse.js"></script>
- <script src="../../ui/jquery.ui.draggable.js"></script>
- <script src="../../ui/jquery.ui.droppable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #draggable { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
- #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
- </style>
- <script>
- $(function() {
- $( "#draggable" ).draggable();
- $( "#droppable" ).droppable({
- drop: function( event, ui ) {
- $( this )
- .addClass( "ui-state-highlight" )
- .find( "p" )
- .html( "Dropped!" );
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div id="draggable" class="ui-widget-content">
- <p>Drag me to my target</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
- <p>Drop here</p>
-</div>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Enable any DOM element to be droppable, a target for draggable elements.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras.jpg b/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras.jpg
deleted file mode 100644
index 5723680df..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras.jpg
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras2.jpg b/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras2.jpg
deleted file mode 100644
index 1acad3afb..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras2.jpg
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg b/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg
deleted file mode 100644
index 493e0824a..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras3.jpg b/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras3.jpg
deleted file mode 100644
index e158b1ae0..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras3.jpg
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg b/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg
deleted file mode 100644
index 4aa96b01e..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras4.jpg b/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras4.jpg
deleted file mode 100644
index da4124d88..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras4.jpg
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg b/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg
deleted file mode 100644
index 794dbdf78..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras_min.jpg b/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras_min.jpg
deleted file mode 100644
index 51e0cdedf..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/images/high_tatras_min.jpg
+++ /dev/null
Binary files differ
diff --git a/include/jquery_ui/development-bundle/demos/droppable/index.html b/include/jquery_ui/development-bundle/demos/droppable/index.html
deleted file mode 100644
index 13ae9855e..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Droppable Demos</title>
- <link rel="stylesheet" href="../demos.css">
-</head>
-<body>
-
-<div class="demos-nav">
- <h4>Examples</h4>
- <ul>
- <li class="demo-config-on"><a href="default.html">Default functionality</a></li>
- <li><a href="accepted-elements.html">Accepted elements</a></li>
- <li><a href="propagation.html">Prevent propagation</a></li>
- <li><a href="visual-feedback.html">Visual feedback</a></li>
- <li><a href="revert.html">Revert draggable position</a></li>
- <li><a href="shopping-cart.html">Shopping Cart</a></li>
- <li><a href="photo-manager.html">Simple photo manager</a></li>
- </ul>
-</div>
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/droppable/photo-manager.html b/include/jquery_ui/development-bundle/demos/droppable/photo-manager.html
deleted file mode 100644
index d3586e62e..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/photo-manager.html
+++ /dev/null
@@ -1,184 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Droppable - Simple photo manager</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.position.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.mouse.js"></script>
- <script src="../../ui/jquery.ui.draggable.js"></script>
- <script src="../../ui/jquery.ui.droppable.js"></script>
- <script src="../../ui/jquery.ui.resizable.js"></script>
- <script src="../../ui/jquery.ui.dialog.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #gallery { float: left; width: 65%; min-height: 12em; } * html #gallery { height: 12em; } /* IE6 */
- .gallery.custom-state-active { background: #eee; }
- .gallery li { float: left; width: 96px; padding: 0.4em; margin: 0 0.4em 0.4em 0; text-align: center; }
- .gallery li h5 { margin: 0 0 0.4em; cursor: move; }
- .gallery li a { float: right; }
- .gallery li a.ui-icon-zoomin { float: left; }
- .gallery li img { width: 100%; cursor: move; }
-
- #trash { float: right; width: 32%; min-height: 18em; padding: 1%;} * html #trash { height: 18em; } /* IE6 */
- #trash h4 { line-height: 16px; margin: 0 0 0.4em; }
- #trash h4 .ui-icon { float: left; }
- #trash .gallery h5 { display: none; }
- </style>
- <script>
- $(function() {
- // there's the gallery and the trash
- var $gallery = $( "#gallery" ),
- $trash = $( "#trash" );
-
- // let the gallery items be draggable
- $( "li", $gallery ).draggable({
- cancel: "a.ui-icon", // clicking an icon won't initiate dragging
- revert: "invalid", // when not dropped, the item will revert back to its initial position
- containment: $( "#demo-frame" ).length ? "#demo-frame" : "document", // stick to demo-frame if present
- helper: "clone",
- cursor: "move"
- });
-
- // let the trash be droppable, accepting the gallery items
- $trash.droppable({
- accept: "#gallery > li",
- activeClass: "ui-state-highlight",
- drop: function( event, ui ) {
- deleteImage( ui.draggable );
- }
- });
-
- // let the gallery be droppable as well, accepting items from the trash
- $gallery.droppable({
- accept: "#trash li",
- activeClass: "custom-state-active",
- drop: function( event, ui ) {
- recycleImage( ui.draggable );
- }
- });
-
- // image deletion function
- var recycle_icon = "<a href='link/to/recycle/script/when/we/have/js/off' title='Recycle this image' class='ui-icon ui-icon-refresh'>Recycle image</a>";
- function deleteImage( $item ) {
- $item.fadeOut(function() {
- var $list = $( "ul", $trash ).length ?
- $( "ul", $trash ) :
- $( "<ul class='gallery ui-helper-reset'/>" ).appendTo( $trash );
-
- $item.find( "a.ui-icon-trash" ).remove();
- $item.append( recycle_icon ).appendTo( $list ).fadeIn(function() {
- $item
- .animate({ width: "48px" })
- .find( "img" )
- .animate({ height: "36px" });
- });
- });
- }
-
- // image recycle function
- var trash_icon = "<a href='link/to/trash/script/when/we/have/js/off' title='Delete this image' class='ui-icon ui-icon-trash'>Delete image</a>";
- function recycleImage( $item ) {
- $item.fadeOut(function() {
- $item
- .find( "a.ui-icon-refresh" )
- .remove()
- .end()
- .css( "width", "96px")
- .append( trash_icon )
- .find( "img" )
- .css( "height", "72px" )
- .end()
- .appendTo( $gallery )
- .fadeIn();
- });
- }
-
- // image preview function, demonstrating the ui.dialog used as a modal window
- function viewLargerImage( $link ) {
- var src = $link.attr( "href" ),
- title = $link.siblings( "img" ).attr( "alt" ),
- $modal = $( "img[src$='" + src + "']" );
-
- if ( $modal.length ) {
- $modal.dialog( "open" );
- } else {
- var img = $( "<img alt='" + title + "' width='384' height='288' style='display: none; padding: 8px;' />" )
- .attr( "src", src ).appendTo( "body" );
- setTimeout(function() {
- img.dialog({
- title: title,
- width: 400,
- modal: true
- });
- }, 1 );
- }
- }
-
- // resolve the icons behavior with event delegation
- $( "ul.gallery > li" ).click(function( event ) {
- var $item = $( this ),
- $target = $( event.target );
-
- if ( $target.is( "a.ui-icon-trash" ) ) {
- deleteImage( $item );
- } else if ( $target.is( "a.ui-icon-zoomin" ) ) {
- viewLargerImage( $target );
- } else if ( $target.is( "a.ui-icon-refresh" ) ) {
- recycleImage( $item );
- }
-
- return false;
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo ui-widget ui-helper-clearfix">
-
-<ul id="gallery" class="gallery ui-helper-reset ui-helper-clearfix">
- <li class="ui-widget-content ui-corner-tr">
- <h5 class="ui-widget-header">High Tatras</h5>
- <img src="images/high_tatras_min.jpg" alt="The peaks of High Tatras" width="96" height="72" />
- <a href="images/high_tatras.jpg" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
- <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>
- </li>
- <li class="ui-widget-content ui-corner-tr">
- <h5 class="ui-widget-header">High Tatras 2</h5>
- <img src="images/high_tatras2_min.jpg" alt="The chalet at the Green mountain lake" width="96" height="72" />
- <a href="images/high_tatras2.jpg" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
- <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>
- </li>
- <li class="ui-widget-content ui-corner-tr">
- <h5 class="ui-widget-header">High Tatras 3</h5>
- <img src="images/high_tatras3_min.jpg" alt="Planning the ascent" width="96" height="72" />
- <a href="images/high_tatras3.jpg" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
- <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>
- </li>
- <li class="ui-widget-content ui-corner-tr">
- <h5 class="ui-widget-header">High Tatras 4</h5>
- <img src="images/high_tatras4_min.jpg" alt="On top of Kozi kopka" width="96" height="72" />
- <a href="images/high_tatras4.jpg" title="View larger image" class="ui-icon ui-icon-zoomin">View larger</a>
- <a href="link/to/trash/script/when/we/have/js/off" title="Delete this image" class="ui-icon ui-icon-trash">Delete image</a>
- </li>
-</ul>
-
-<div id="trash" class="ui-widget-content ui-state-default">
- <h4 class="ui-widget-header"><span class="ui-icon ui-icon-trash">Trash</span> Trash</h4>
-</div>
-
-</div><!-- End demo -->
-
-
-<div class="demo-description">
-<p>You can delete an image either by dragging it to the Trash or by clicking the trash icon.</p>
-<p>You can "recycle" an image by dragging it back to the gallery or by clicking the recycle icon.</p>
-<p>You can view larger image by clicking the zoom icon. jQuery UI dialog widget is used for the modal window.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/droppable/propagation.html b/include/jquery_ui/development-bundle/demos/droppable/propagation.html
deleted file mode 100644
index 7982e2af0..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/propagation.html
+++ /dev/null
@@ -1,80 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Droppable - Prevent propagation</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.mouse.js"></script>
- <script src="../../ui/jquery.ui.draggable.js"></script>
- <script src="../../ui/jquery.ui.droppable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #draggable { width: 100px; height: 40px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
- #droppable, #droppable2 { width: 230px; height: 120px; padding: 0.5em; float: left; margin: 10px; }
- #droppable-inner, #droppable2-inner { width: 170px; height: 60px; padding: 0.5em; float: left; margin: 10px; }
- </style>
- <script>
- $(function() {
- $( "#draggable" ).draggable();
-
- $( "#droppable, #droppable-inner" ).droppable({
- activeClass: "ui-state-hover",
- hoverClass: "ui-state-active",
- drop: function( event, ui ) {
- $( this )
- .addClass( "ui-state-highlight" )
- .find( "> p" )
- .html( "Dropped!" );
- return false;
- }
- });
-
- $( "#droppable2, #droppable2-inner" ).droppable({
- greedy: true,
- activeClass: "ui-state-hover",
- hoverClass: "ui-state-active",
- drop: function( event, ui ) {
- $( this )
- .addClass( "ui-state-highlight" )
- .find( "> p" )
- .html( "Dropped!" );
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div id="draggable" class="ui-widget-content">
- <p>Drag me to my target</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
- <p>Outer droppable</p>
- <div id="droppable-inner" class="ui-widget-header">
- <p>Inner droppable (not greedy)</p>
- </div>
-</div>
-
-<div id="droppable2" class="ui-widget-header">
- <p>Outer droppable</p>
- <div id="droppable2-inner" class="ui-widget-header">
- <p>Inner droppable (greedy)</p>
- </div>
-</div>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>When working with nested droppables &#8212; for example, you may have an editable directory structure displayed as a tree, with folder and document nodes &#8212; the <code>greedy</code> option set to true prevents event propagation when a draggable is dropped on a child node (droppable).</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/droppable/revert.html b/include/jquery_ui/development-bundle/demos/droppable/revert.html
deleted file mode 100644
index 2809ff421..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/revert.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Droppable - Revert draggable position</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.mouse.js"></script>
- <script src="../../ui/jquery.ui.draggable.js"></script>
- <script src="../../ui/jquery.ui.droppable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #draggable, #draggable2 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
- #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
- </style>
- <script>
- $(function() {
- $( "#draggable" ).draggable({ revert: "valid" });
- $( "#draggable2" ).draggable({ revert: "invalid" });
-
- $( "#droppable" ).droppable({
- activeClass: "ui-state-hover",
- hoverClass: "ui-state-active",
- drop: function( event, ui ) {
- $( this )
- .addClass( "ui-state-highlight" )
- .find( "p" )
- .html( "Dropped!" );
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div id="draggable" class="ui-widget-content">
- <p>I revert when I'm dropped</p>
-</div>
-
-<div id="draggable2" class="ui-widget-content">
- <p>I revert when I'm not dropped</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
- <p>Drop me here</p>
-</div>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Return the draggable (or it's helper) to its original location when dragging stops with the boolean <code>revert</code> option set on the draggable.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/droppable/shopping-cart.html b/include/jquery_ui/development-bundle/demos/droppable/shopping-cart.html
deleted file mode 100644
index 8a08f576b..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/shopping-cart.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Droppable - Shopping Cart Demo</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.mouse.js"></script>
- <script src="../../ui/jquery.ui.draggable.js"></script>
- <script src="../../ui/jquery.ui.droppable.js"></script>
- <script src="../../ui/jquery.ui.sortable.js"></script>
- <script src="../../ui/jquery.ui.accordion.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- h1 { padding: .2em; margin: 0; }
- #products { float:left; width: 500px; margin-right: 2em; }
- #cart { width: 200px; float: left; }
- /* style the list to maximize the droppable hitarea */
- #cart ol { margin: 0; padding: 1em 0 1em 3em; }
- </style>
- <script>
- $(function() {
- $( "#catalog" ).accordion();
- $( "#catalog li" ).draggable({
- appendTo: "body",
- helper: "clone"
- });
- $( "#cart ol" ).droppable({
- activeClass: "ui-state-default",
- hoverClass: "ui-state-hover",
- accept: ":not(.ui-sortable-helper)",
- drop: function( event, ui ) {
- $( this ).find( ".placeholder" ).remove();
- $( "<li></li>" ).text( ui.draggable.text() ).appendTo( this );
- }
- }).sortable({
- items: "li:not(.placeholder)",
- sort: function() {
- // gets added unintentionally by droppable interacting with sortable
- // using connectWithSortable fixes this, but doesn't allow you to customize active/hoverClass options
- $( this ).removeClass( "ui-state-default" );
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<div id="products">
- <h1 class="ui-widget-header">Products</h1>
- <div id="catalog">
- <h3><a href="#">T-Shirts</a></h3>
- <div>
- <ul>
- <li>Lolcat Shirt</li>
- <li>Cheezeburger Shirt</li>
- <li>Buckit Shirt</li>
- </ul>
- </div>
- <h3><a href="#">Bags</a></h3>
- <div>
- <ul>
- <li>Zebra Striped</li>
- <li>Black Leather</li>
- <li>Alligator Leather</li>
- </ul>
- </div>
- <h3><a href="#">Gadgets</a></h3>
- <div>
- <ul>
- <li>iPhone</li>
- <li>iPod</li>
- <li>iPad</li>
- </ul>
- </div>
- </div>
-</div>
-
-<div id="cart">
- <h1 class="ui-widget-header">Shopping Cart</h1>
- <div class="ui-widget-content">
- <ol>
- <li class="placeholder">Add your items here</li>
- </ol>
- </div>
-</div>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Demonstrate how to use an accordion to structure products into a catalog and make use drag and drop for adding them to a shopping cart, where they are sortable.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>
diff --git a/include/jquery_ui/development-bundle/demos/droppable/visual-feedback.html b/include/jquery_ui/development-bundle/demos/droppable/visual-feedback.html
deleted file mode 100644
index 889f3be02..000000000
--- a/include/jquery_ui/development-bundle/demos/droppable/visual-feedback.html
+++ /dev/null
@@ -1,78 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>jQuery UI Droppable - Visual feedback</title>
- <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
- <script src="../../jquery-1.7.2.js"></script>
- <script src="../../ui/jquery.ui.core.js"></script>
- <script src="../../ui/jquery.ui.widget.js"></script>
- <script src="../../ui/jquery.ui.mouse.js"></script>
- <script src="../../ui/jquery.ui.draggable.js"></script>
- <script src="../../ui/jquery.ui.droppable.js"></script>
- <link rel="stylesheet" href="../demos.css">
- <style>
- #draggable, #draggable2 { width: 90px; height: 90px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
- #droppable, #droppable2 { width: 120px; height: 120px; padding: 0.5em; float: left; margin: 10px; }
- </style>
- <script>
- $(function() {
- $( "#draggable" ).draggable();
- $( "#droppable" ).droppable({
- hoverClass: "ui-state-active",
- drop: function( event, ui ) {
- $( this )
- .addClass( "ui-state-highlight" )
- .find( "p" )
- .html( "Dropped!" );
- }
- });
-
- $( "#draggable2" ).draggable();
- $( "#droppable2" ).droppable({
- accept: "#draggable2",
- activeClass: "ui-state-hover",
- drop: function( event, ui ) {
- $( this )
- .addClass( "ui-state-highlight" )
- .find( "p" )
- .html( "Dropped!" );
- }
- });
- });
- </script>
-</head>
-<body>
-
-<div class="demo">
-
-<h3 class="docs">Feedback on hover:</h3>
-
-<div id="draggable" class="ui-widget-content">
- <p>Drag me to my target</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
- <p>Drop here</p>
-</div>
-
-<h3 class="docs">Feedback on activating draggable:</h3>
-
-<div id="draggable2" class="ui-widget-content">
- <p>Drag me to my target</p>
-</div>
-
-<div id="droppable2" class="ui-widget-header">
- <p>Drop here</p>
-</div>
-
-</div><!-- End demo -->
-
-
-
-<div class="demo-description">
-<p>Change the droppable's appearance on hover, or when the droppable is active (an acceptable draggable is dropped on it). Use the <code>hoverClass</code> or <code>activeClass</code> options to specify respective classes.</p>
-</div><!-- End demo-description -->
-
-</body>
-</html>