mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
draggable: defaults should be set to 'false' if disabled, not null (fixes #3878)
This commit is contained in:
parent
bcda57c355
commit
aba53d09fd
@ -405,14 +405,14 @@ $.extend($.ui.draggable, {
|
||||
containment: false,
|
||||
cssNamespace: "ui",
|
||||
cursor: "default",
|
||||
cursorAt: null,
|
||||
cursorAt: false,
|
||||
delay: 0,
|
||||
distance: 1,
|
||||
grid: false,
|
||||
handle: false,
|
||||
helper: "original",
|
||||
iframeFix: false,
|
||||
opacity: null,
|
||||
opacity: false,
|
||||
refreshPositions: false,
|
||||
revert: false,
|
||||
revertDuration: 500,
|
||||
@ -424,7 +424,7 @@ $.extend($.ui.draggable, {
|
||||
snapMode: "both",
|
||||
snapTolerance: 20,
|
||||
stack: false,
|
||||
zIndex: null
|
||||
zIndex: false
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user