diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-12 20:26:47 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-12 20:26:47 -0400 |
commit | bd3a348776bf50da53d17f1574efd5538ce9de4f (patch) | |
tree | ba9c13372c792dc285844b31d6c160fb8f19afbb /ui/jquery.ui.tooltip.js | |
parent | 94221c4e5b11496ef927889e1541d84b5746fb31 (diff) | |
download | jquery-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.js | 3 |
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", |