diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-07-28 18:53:29 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-07-28 18:53:29 +0000 |
commit | c2ef2553bcc6fc3f2fd08fcf7e2d597077b2ce7a (patch) | |
tree | aaa235aac607684e14880f64771fb5bb0c7bb6ed /ui/ui.droppable.js | |
parent | 841751a0d5ce21bae6e2318f2d3d16b9a4748014 (diff) | |
download | jquery-ui-c2ef2553bcc6fc3f2fd08fcf7e2d597077b2ce7a.tar.gz jquery-ui-c2ef2553bcc6fc3f2fd08fcf7e2d597077b2ce7a.zip |
sortable: small fix that causes the scope default not to work correctly
Diffstat (limited to 'ui/ui.droppable.js')
-rw-r--r-- | ui/ui.droppable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.droppable.js b/ui/ui.droppable.js index 3e5d2999e..4e77ecf67 100644 --- a/ui/ui.droppable.js +++ b/ui/ui.droppable.js @@ -169,7 +169,7 @@ $.ui.intersect = function(draggable, droppable, toleranceMode) { */ $.ui.ddmanager = { current: null, - droppables: { scope: [] }, + droppables: { default: [] }, prepareOffsets: function(t, e) { var m = $.ui.ddmanager.droppables[t.options.scope]; |