aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.tooltip.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-10-12 20:26:47 -0400
committerScott González <scott.gonzalez@gmail.com>2012-10-12 20:26:47 -0400
commitbd3a348776bf50da53d17f1574efd5538ce9de4f (patch)
treeba9c13372c792dc285844b31d6c160fb8f19afbb /ui/jquery.ui.tooltip.js
parent94221c4e5b11496ef927889e1541d84b5746fb31 (diff)
downloadjquery-ui-bd3a348776bf50da53d17f1574efd5538ce9de4f.tar.gz
jquery-ui-bd3a348776bf50da53d17f1574efd5538ce9de4f.zip
Tooltip: Change the default items selector to exclude disabled elements. Fixes #8661 - Tooltip doesn't hide on disabled anchor element [IE only].
Diffstat (limited to 'ui/jquery.ui.tooltip.js')
-rw-r--r--ui/jquery.ui.tooltip.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js
index 980b43868..0f69e898f 100644
--- a/ui/jquery.ui.tooltip.js
+++ b/ui/jquery.ui.tooltip.js
@@ -49,7 +49,8 @@ $.widget( "ui.tooltip", {
return $( this ).attr( "title" );
},
hide: true,
- items: "[title]",
+ // Disabled elements have inconsistent behavior across browsers (#8661)
+ items: "[title]:not([disabled])",
position: {
my: "left+15 center",
at: "right center",