diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-09-16 12:40:48 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-09-16 12:40:48 +0000 |
commit | cef66ee99f3924f5f74ac8c3f3190bfd125bd845 (patch) | |
tree | 0098d49f57a3de62038680c3e9536f27ce18b6af /tests/sortable.js | |
parent | fd40ff0fe036cf4c38b93f0345505052f83dbb66 (diff) | |
download | jquery-ui-cef66ee99f3924f5f74ac8c3f3190bfd125bd845.tar.gz jquery-ui-cef66ee99f3924f5f74ac8c3f3190bfd125bd845.zip |
sortable: Fixed the floating functional demo, implemented forcePlaceholderSize
Diffstat (limited to 'tests/sortable.js')
-rw-r--r-- | tests/sortable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sortable.js b/tests/sortable.js index 99c4463e5..7b79311a7 100644 --- a/tests/sortable.js +++ b/tests/sortable.js @@ -109,7 +109,7 @@ test("disable", function() { test("defaults", function() {
el = $("#sortable").sortable();
- equals(el.data("helper.sortable"), "clone", "helper");
+ equals(el.data("helper.sortable"), "original", "helper");
equals(el.data("tolerance.sortable"), "guess", "tolerance");
equals(el.data("distance.sortable"), 1, "distance");
equals(el.data("disabled.sortable"), false, "disabled");
|