]> source.dussan.org Git - jquery-ui.git/commitdiff
tests sortable - fixed failing enable test
authorRichard Worth <rdworth@gmail.com>
Sat, 21 Jun 2008 10:04:40 +0000 (10:04 +0000)
committerRichard Worth <rdworth@gmail.com>
Sat, 21 Jun 2008 10:04:40 +0000 (10:04 +0000)
tests/sortable.html
tests/sortable.js

index 5aeee7f8d61931424396df58f6c69de3d6af85a7..102cdbd5c5b6c4cccff59b6ac03d737c9ec2fe12 100644 (file)
 \r
 <div id="main" style="border: 1px solid black; padding: 10px; margin: 10px;">\r
        <ul id="sortable">\r
-               <li>Item 1<li>\r
-               <li>Item 2<li>\r
-               <li>Item 3<li>\r
-               <li>Item 4<li>\r
-               <li>Item 5<li>\r
+               <li>Item 1</li>\r
+               <li>Item 2</li>\r
+               <li>Item 3</li>\r
+               <li>Item 4</li>\r
+               <li>Item 5</li>\r
        </ul>\r
 </div>\r
 \r
index acfd8d9df596d32731accc5d7d9394b441552321..7cde74c047d7ef6f151f5bf6e37f65b2dc42cb10 100644 (file)
@@ -76,7 +76,7 @@ test("enable", function() {
        expect(4);\r
        el = $("#sortable").sortable({ disabled: true });\r
 \r
-       sort($("li", el)[0], 0, 50, 0, '.sortable({ disabled: true })');\r
+       sort($("li", el)[0], 0, 40, 0, '.sortable({ disabled: true })');\r
        \r
        el.sortable("enable");\r
        equals(el.data("disabled.sortable"), false, "disabled.sortable getter");\r
@@ -86,7 +86,7 @@ test("enable", function() {
        el.data("disabled.sortable", false);\r
        equals(el.data("disabled.sortable"), false, "disabled.sortable setter");\r
        \r
-       sort($("li", el)[0], 0, 20, 2, '.data("disabled.sortable", false)');\r
+       sort($("li", el)[0], 0, 40, 2, '.data("disabled.sortable", false)');\r
 });\r
 \r
 test("disable", function() {\r