diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-11-21 19:40:45 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-11-21 19:40:45 +0000 |
commit | 0036aaf4b67d55e621ac2e4553a98dc80d2ca727 (patch) | |
tree | e5766688341a3e3fea2453e91e1443b1e5780ade /ui/ui.draggable.js | |
parent | 65289463debbc3d32cf4de045372bc7e076f7e0c (diff) | |
download | jquery-ui-0036aaf4b67d55e621ac2e4553a98dc80d2ca727.tar.gz jquery-ui-0036aaf4b67d55e621ac2e4553a98dc80d2ca727.zip |
draggable: added missing default for zIndex and cursorAt, added missing scroll tests (unfortunately showing big regressions that need to be fixed prior to 1.6)
Diffstat (limited to 'ui/ui.draggable.js')
-rw-r--r-- | ui/ui.draggable.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index abf1cddbc..d247ac09a 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -369,6 +369,7 @@ $.extend($.ui.draggable, { containment: false, cssNamespace: "ui", cursor: "default", + cursorAt: null, delay: 0, distance: 1, grid: false, @@ -386,7 +387,8 @@ $.extend($.ui.draggable, { snap: false, snapMode: "both", snapTolerance: 20, - stack: false + stack: false, + zIndex: null } }); |