r1939 - in trunk: tests/unit/sortable ui
Author: scott.gonzalez
Date: Sat Jan 31 17:02:34 2009
New Revision: 1939
Modified:
trunk/tests/unit/sortable/sortable.js
trunk/ui/ui.sortable.js
Log:
Sortable: Added defaults for cursor, cursorAt, opacity.
Modified: trunk/tests/unit/sortable/sortable.js
==============================================================================
--- trunk/tests/unit/sortable/sortable.js (original)
+++ trunk/tests/unit/sortable/sortable.js Sat Jan 31 17:02:34 2009
@@ -9,12 +9,15 @@
var defaults = {
appendTo: "parent",
cancel: ":input,option",
+ cursor: 'default',
+ cursorAt: false,
delay: 0,
disabled: false,
distance: 1,
dropOnEmpty: true,
helper: "original",
items: "> *",
+ opacity: false,
scroll: true,
scrollSensitivity: 20,
scrollSpeed: 20,
Modified: trunk/ui/ui.sortable.js
==============================================================================
--- trunk/ui/ui.sortable.js (original)
+++ trunk/ui/ui.sortable.js Sat Jan 31 17:02:34 2009
@@ -998,6 +998,8 @@
cancel: ":input,option",
connectWith: false,
cssNamespace: 'ui',
+ cursor: 'default',
+ cursorAt: false,
delay: 0,
distance: 1,
dropOnEmpty: true,
@@ -1006,6 +1008,7 @@
handle: false,
helper: "original",
items: '> *',
+ opacity: false,
placeholder: false,
scope: "default",
scroll: true,