diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-06-09 00:46:00 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-06-09 00:46:00 +0000 |
commit | 8634ba993ceec7c9bbd34b6e0e2a666494b385a4 (patch) | |
tree | 5033d6ec9e3b0bf57821b337b5d7a87b3e705936 /ui/ui.core.js | |
parent | ce94b548d012b74862d35c80a235ecaa31717dc8 (diff) | |
download | jquery-ui-8634ba993ceec7c9bbd34b6e0e2a666494b385a4.tar.gz jquery-ui-8634ba993ceec7c9bbd34b6e0e2a666494b385a4.zip |
All mouse-based plugins: Extend $.ui.mouse.defaults. Changed $.ui.mouse.defaults.cancel to ":input,option" which is used by every plugin as its default. Fixes #4584 ($.ui.mouse.defaults never used).
Diffstat (limited to 'ui/ui.core.js')
-rw-r--r-- | ui/ui.core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.core.js b/ui/ui.core.js index 4068f9630..fe2d228e3 100644 --- a/ui/ui.core.js +++ b/ui/ui.core.js @@ -519,7 +519,7 @@ $.ui.mouse = { }; $.ui.mouse.defaults = { - cancel: null, + cancel: ':input,option', distance: 1, delay: 0 }; |