aboutsummaryrefslogtreecommitdiffstats
path: root/demos/sortable
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-31 01:20:50 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-31 01:20:50 +0000
commit9a35874d44262f79d1a5fc7d8c7e673518c985fd (patch)
treef9cd8915ee759d2427c657e680e9282e7b20aa86 /demos/sortable
parent2789fca8afb34dc770df8163fad7f6df15a77025 (diff)
downloadjquery-ui-9a35874d44262f79d1a5fc7d8c7e673518c985fd.tar.gz
jquery-ui-9a35874d44262f79d1a5fc7d8c7e673518c985fd.zip
demos: whitespace fixes
- trailing whitespace - inconsistent line endings - set svn:eol-style to native
Diffstat (limited to 'demos/sortable')
-rw-r--r--demos/sortable/delaydistance.html6
-rw-r--r--demos/sortable/droponempty.html2
-rw-r--r--demos/sortable/items.html2
3 files changed, 5 insertions, 5 deletions
diff --git a/demos/sortable/delaydistance.html b/demos/sortable/delaydistance.html
index 19695d9bf..096c1d582 100644
--- a/demos/sortable/delaydistance.html
+++ b/demos/sortable/delaydistance.html
@@ -13,15 +13,15 @@
</style>
<script type="text/javascript">
$(function() {
-
+
$("ul:eq(0)").sortable({
delay: 1000
});
-
+
$("ul:eq(1)").sortable({
distance: 50
});
-
+
});
</script>
</head>
diff --git a/demos/sortable/droponempty.html b/demos/sortable/droponempty.html
index 6d1a9b95c..a48e8e932 100644
--- a/demos/sortable/droponempty.html
+++ b/demos/sortable/droponempty.html
@@ -16,7 +16,7 @@
$("ul.droptrue").sortable({
connectWith: ['ul']
});
-
+
$("ul.dropfalse").sortable({
connectWith: ['ul'],
dropOnEmpty: false
diff --git a/demos/sortable/items.html b/demos/sortable/items.html
index ac08a0791..078af9990 100644
--- a/demos/sortable/items.html
+++ b/demos/sortable/items.html
@@ -16,7 +16,7 @@
$("ul:eq(0)").sortable({
items: 'li:not(.ui-state-disabled)'
});
-
+
$("ul:eq(1)").sortable({
cancel: '.ui-state-disabled'
});