aboutsummaryrefslogtreecommitdiffstats
path: root/demos/sortable/connect-lists.html
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-01-20 13:12:22 +0000
committerRichard Worth <rdworth@gmail.com>2009-01-20 13:12:22 +0000
commitd578a66d49f0779de7d99b68d35d97e5600d3167 (patch)
tree96451908ecee9a9ef11fbfbf2da1336ae7e81456 /demos/sortable/connect-lists.html
parent670d3e0ac9cc97b440b7b1df23003472c437bc3f (diff)
downloadjquery-ui-d578a66d49f0779de7d99b68d35d97e5600d3167.tar.gz
jquery-ui-d578a66d49f0779de7d99b68d35d97e5600d3167.zip
demos/sortable: some cleanup and consistency
Diffstat (limited to 'demos/sortable/connect-lists.html')
-rw-r--r--demos/sortable/connect-lists.html11
1 files changed, 8 insertions, 3 deletions
diff --git a/demos/sortable/connect-lists.html b/demos/sortable/connect-lists.html
index 569dbfa29..6497b5fa1 100644
--- a/demos/sortable/connect-lists.html
+++ b/demos/sortable/connect-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; }
- .demo li { margin: 5px; padding: 5px; font-size: 1.2em; width: 120px; }
+ #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; }
+ #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 120px; }
</style>
<script type="text/javascript">
$(function() {
@@ -42,7 +42,12 @@
<div class="demo-description">
-<p>Sort items from one list into another and vice versa passing an array into the <strong>connectWith</strong> option. The simplest way to do this is to group all related lists with a CSS class, and then pass that class into the sortable function using array notation (i.e., connectWith: ['.myclass']).</p>
+<p>
+ Sort items from one list into another and vice versa, by passing an array into
+ the <code>connectWith</code> option. The simplest way to do this is to
+ group all related lists with a CSS class, and then pass that class into the
+ sortable function using array notation (i.e., <code>connectWith: ['.myclass']</code>).
+</p>
</div><!-- End demo-description -->