Draggable Unit: Modified to actually reflect new API options

This commit is contained in:
Dave Stein 2012-12-20 18:04:32 -05:00
parent 68f45613bd
commit ddcb7695e3

View File

@ -14,34 +14,33 @@ TestHelpers.commonWidgetTests( "draggable", {
cursor: "auto", cursor: "auto",
cursorAt: false, cursorAt: false,
grid: false, grid: false,
iframeFix: false,
opacity: false, opacity: false,
refreshPositions: false, refreshPositions: false,
revert: false, revert: false,
revertDuration: 500, revertDuration: 500,
scroll: true, scroll: true,
scrollSensitivity: 20, scrollSensitivity: null,
scrollSpeed: 20, scrollSpeed: null,
scope: "default", scope: "default",
snap: false, snap: false,
snapMode: "both", snapMode: "both",
snapTolerance: 20, snapTolerance: 20,
stack: false, stack: false,
zIndex: false, zIndex: false,
cancel: "input,textarea,button,select,option", cancel: null,
// methods // // methods
destroy: null, // destroy: null,
disable: null, // disable: null,
enable: null, // enable: null,
option: null, // option: null,
widget: null, // widget: null,
// callbacks // // callbacks
beforeStart: null, // beforeStart: null,
create: null, // create: null,
drag: null, // drag: null,
start: null, // start: null,
stop: null // stop: null
} }
}); });