diff options
author | Richard Worth <rdworth@gmail.com> | 2008-06-26 10:23:38 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-06-26 10:23:38 +0000 |
commit | e42b0f6b8bf910885b7b84037b312c5c93b47a26 (patch) | |
tree | 1d17fb6f31fafed8c59609a791e9ec8d8097a06e /tests/sortable.js | |
parent | 505d88ec285824b6ba0a27b597e5cd1094c67b40 (diff) | |
download | jquery-ui-e42b0f6b8bf910885b7b84037b312c5c93b47a26.tar.gz jquery-ui-e42b0f6b8bf910885b7b84037b312c5c93b47a26.zip |
resizable, selectable, sortable: changed cancel default to ':input' instead of (redundant) ':input,button'
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 a3000ff24..f3f88a887 100644 --- a/tests/sortable.js +++ b/tests/sortable.js @@ -117,7 +117,7 @@ test("defaults", function() { equals(el.data("scroll.sortable"), true, "scroll");
equals(el.data("scrollSensitivity.sortable"), 20, "scrollSensitivity");
equals(el.data("scrollSpeed.sortable"), 20, "scrollSpeed");
- equals(el.data("cancel.sortable"), ":input,button", "cancel");
+ equals(el.data("cancel.sortable"), ":input", "cancel");
equals(el.data("items.sortable"), "> *", "items");
equals(el.data("zIndex.sortable"), 1000, "zIndex");
equals(el.data("dropOnEmpty.sortable"), true, "dropOnEmpty");
|