cancel option should take in account <option> (fixes #3786)

This commit is contained in:
Paul Bakaus 2009-01-07 15:37:02 +00:00
parent c424efe6ff
commit e62531a627
4 changed files with 4 additions and 4 deletions

View File

@ -363,7 +363,7 @@ $.extend($.ui.draggable, {
defaults: {
appendTo: "parent",
axis: false,
cancel: ":input",
cancel: ":input,option",
connectToSortable: false,
containment: false,
cssNamespace: "ui",

View File

@ -547,7 +547,7 @@ $.extend($.ui.resizable, {
animateEasing: "swing",
aspectRatio: false,
autoHide: false,
cancel: ":input",
cancel: ":input,option",
containment: false,
delay: 0,
disableSelection: true,

View File

@ -236,7 +236,7 @@ $.extend($.ui.selectable, {
defaults: {
appendTo: 'body',
autoRefresh: true,
cancel: ":input",
cancel: ":input,option",
delay: 0,
distance: 1,
filter: '*',

View File

@ -895,7 +895,7 @@ $.extend($.ui.sortable, {
defaults: {
accurateIntersection: true,
appendTo: "parent",
cancel: ":input",
cancel: ":input,option",
delay: 0,
distance: 1,
dropOnEmpty: true,