diff options
author | Richard Worth <rdworth@gmail.com> | 2009-01-20 13:12:22 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-01-20 13:12:22 +0000 |
commit | d578a66d49f0779de7d99b68d35d97e5600d3167 (patch) | |
tree | 96451908ecee9a9ef11fbfbf2da1336ae7e81456 /demos/sortable/empty-lists.html | |
parent | 670d3e0ac9cc97b440b7b1df23003472c437bc3f (diff) | |
download | jquery-ui-d578a66d49f0779de7d99b68d35d97e5600d3167.tar.gz jquery-ui-d578a66d49f0779de7d99b68d35d97e5600d3167.zip |
demos/sortable: some cleanup and consistency
Diffstat (limited to 'demos/sortable/empty-lists.html')
-rw-r--r-- | demos/sortable/empty-lists.html | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/demos/sortable/empty-lists.html b/demos/sortable/empty-lists.html index 7c66515eb..426c0ce6a 100644 --- a/demos/sortable/empty-lists.html +++ b/demos/sortable/empty-lists.html @@ -8,8 +8,8 @@ <script type="text/javascript" src="../../ui/ui.sortable.js"></script> <link type="text/css" href="../demos.css" rel="stylesheet" /> <style type="text/css"> - .demo ul { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; background: #eee; padding: 5px; width: 143px;} - .demo li { margin: 5px; padding: 5px; font-size: 1.2em; width: 120px; } + #sortable1, #sortable2, #sortable3 { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; background: #eee; padding: 5px; width: 143px;} + #sortable1 li, #sortable2 li, #sortable3 li { margin: 5px; padding: 5px; font-size: 1.2em; width: 120px; } </style> <script type="text/javascript"> $(function() { @@ -27,7 +27,7 @@ <body> <div class="demo"> -<ul class='droptrue'> +<ul id="sortable1" class='droptrue'> <li class="ui-state-default">Can be dropped..</li> <li class="ui-state-default">..on an empty list</li> <li class="ui-state-default">Item 3</li> @@ -35,7 +35,7 @@ <li class="ui-state-default">Item 5</li> </ul> -<ul class='dropfalse'> +<ul id="sortable2" class='dropfalse'> <li class="ui-state-highlight">Cannot be dropped..</li> <li class="ui-state-highlight">..on an empty list</li> <li class="ui-state-highlight">Item 3</li> @@ -43,7 +43,7 @@ <li class="ui-state-highlight">Item 5</li> </ul> -<ul class='droptrue'> +<ul id="sortable3" class='droptrue'> </ul> <br clear="both" /> @@ -52,7 +52,11 @@ <div class="demo-description"> -<p>Prevent all items in a list from being dropped into a separate, empty list using the <strong>dropOnEmpty</strong> option set to false. By default, sortable items can be dropped on empty lists.</p> +<p> + Prevent all items in a list from being dropped into a separate, empty list + using the <code>dropOnEmpty</code> option set to <code>false</code>. By default, + sortable items can be dropped on empty lists. +</p> </div><!-- End demo-description --> |