Navigation Menu

Skip to content

Commit

Permalink
Tooltip: Use ui-tooltip-open instead of tooltip-open for data key.
Browse files Browse the repository at this point in the history
(cherry picked from commit 02694a9)
  • Loading branch information
scottgonzalez committed Nov 13, 2012
1 parent 25a1de4 commit da2fbca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/jquery.ui.tooltip.js
Expand Up @@ -159,14 +159,14 @@ $.widget( "ui.tooltip", {
target.data( "ui-tooltip-title", target.attr( "title" ) );
}

target.data( "tooltip-open", true );
target.data( "ui-tooltip-open", true );

// kill parent tooltips, custom or native, for hover
if ( event && event.type === "mouseover" ) {
target.parents().each(function() {
var parent = $( this ),
blurEvent;
if ( parent.data( "tooltip-open" ) ) {
if ( parent.data( "ui-tooltip-open" ) ) {
blurEvent = $.Event( "blur" );
blurEvent.target = blurEvent.currentTarget = this;
that.close( blurEvent, true );
Expand Down Expand Up @@ -196,7 +196,7 @@ $.widget( "ui.tooltip", {

content = contentOption.call( target[0], function( response ) {
// ignore async response if tooltip was closed already
if ( !target.data( "tooltip-open" ) ) {
if ( !target.data( "ui-tooltip-open" ) ) {
return;
}
// IE may instantly serve a cached response for ajax requests
Expand Down Expand Up @@ -325,7 +325,7 @@ $.widget( "ui.tooltip", {
that._removeTooltip( $( this ) );
});

target.removeData( "tooltip-open" );
target.removeData( "ui-tooltip-open" );
this._off( target, "mouseleave focusout keyup" );
// Remove 'remove' binding only on delegated targets
if ( target[0] !== this.element[0] ) {
Expand Down

0 comments on commit da2fbca

Please sign in to comment.