diff options
Diffstat (limited to 'ui/jquery.ui.tooltip.js')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index e6f1c7bb6..343c1d055 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -63,12 +63,7 @@ $.widget( "ui.tooltip", { // IE may instantly serve a cached response for ajax requests // delay this call to _open so the other call to _open runs first setTimeout(function() { - // when undefined, it got removeAttr, then ignore (ajax response) - // initially its an empty string, so not undefined - // TODO is there a better approach to enable ajax tooltips to have two updates? - if ( target.attr( "aria-describedby" ) !== undefined ) { - that._open( event, target, response ); - } + that._open( event, target, response ); }, 1 ); }); if ( content ) { |