@@ -159,14 +159,14 @@ $.widget( "ui.tooltip", {
159
159
target . data ( "ui-tooltip-title" , target . attr ( "title" ) ) ;
160
160
}
161
161
162
- target . data ( "tooltip-open" , true ) ;
162
+ target . data ( "ui- tooltip-open" , true ) ;
163
163
164
164
// kill parent tooltips, custom or native, for hover
165
165
if ( event && event . type === "mouseover" ) {
166
166
target . parents ( ) . each ( function ( ) {
167
167
var parent = $ ( this ) ,
168
168
blurEvent ;
169
- if ( parent . data ( "tooltip-open" ) ) {
169
+ if ( parent . data ( "ui- tooltip-open" ) ) {
170
170
blurEvent = $ . Event ( "blur" ) ;
171
171
blurEvent . target = blurEvent . currentTarget = this ;
172
172
that . close ( blurEvent , true ) ;
@@ -196,7 +196,7 @@ $.widget( "ui.tooltip", {
196
196
197
197
content = contentOption . call ( target [ 0 ] , function ( response ) {
198
198
// ignore async response if tooltip was closed already
199
- if ( ! target . data ( "tooltip-open" ) ) {
199
+ if ( ! target . data ( "ui- tooltip-open" ) ) {
200
200
return ;
201
201
}
202
202
// IE may instantly serve a cached response for ajax requests
@@ -325,7 +325,7 @@ $.widget( "ui.tooltip", {
325
325
that . _removeTooltip ( $ ( this ) ) ;
326
326
} ) ;
327
327
328
- target . removeData ( "tooltip-open" ) ;
328
+ target . removeData ( "ui- tooltip-open" ) ;
329
329
this . _off ( target , "mouseleave focusout keyup" ) ;
330
330
// Remove 'remove' binding only on delegated targets
331
331
if ( target [ 0 ] !== this . element [ 0 ] ) {
0 commit comments