diff options
Diffstat (limited to 'demos/sortable/delay-start.html')
-rw-r--r-- | demos/sortable/delay-start.html | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/demos/sortable/delay-start.html b/demos/sortable/delay-start.html index caa0fbfd6..639ace60a 100644 --- a/demos/sortable/delay-start.html +++ b/demos/sortable/delay-start.html @@ -1,4 +1,4 @@ -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> @@ -19,7 +19,7 @@ $( "#sortable1" ).sortable({ delay: 300 }); - + $( "#sortable2" ).sortable({ distance: 15 }); @@ -29,7 +29,6 @@ </script> </head> <body> -<div class="demo"> <h3 class="docs">Time delay of 300ms:</h3> @@ -49,10 +48,6 @@ <li class="ui-state-default">Item 4</li> </ul> -</div><!-- End demo --> - - - <div class="demo-description"> <p> Prevent accidental sorting either by delay (time) or distance. Set a number of @@ -61,7 +56,6 @@ needs to be dragged before sorting starts with the <code>distance</code> option. </p> -</div><!-- End demo-description --> - +</div> </body> </html> |