diff options
author | Richard Worth <rdworth@gmail.com> | 2008-11-08 21:56:57 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-11-08 21:56:57 +0000 |
commit | c1e8c7f07f6b8c742cdfe0062242de892668b69f (patch) | |
tree | 95c58f07d05e365f7bae30a9b21826447b44b3ce /ui/ui.droppable.js | |
parent | caa51ee0dc09e5babf3b5d01056655d07b3abb2c (diff) | |
download | jquery-ui-c1e8c7f07f6b8c742cdfe0062242de892668b69f.tar.gz jquery-ui-c1e8c7f07f6b8c742cdfe0062242de892668b69f.zip |
droppable: defined some defaults
Diffstat (limited to 'ui/ui.droppable.js')
-rw-r--r-- | ui/ui.droppable.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/ui.droppable.js b/ui/ui.droppable.js index d316a1c3d..2de012351 100644 --- a/ui/ui.droppable.js +++ b/ui/ui.droppable.js @@ -132,10 +132,13 @@ $.widget("ui.droppable", { $.extend($.ui.droppable, { version: "@VERSION", defaults: { + activeClass: null, + cssNamespace: 'ui', disabled: false, - tolerance: 'intersect', + greedy: false, + hoverClass: null, scope: 'default', - cssNamespace: 'ui' + tolerance: 'intersect' } }); |