Tooltip: Use bgiframe if available

This commit is contained in:
Scott González 2011-05-29 19:28:35 -04:00
parent 133fba2ad9
commit 0fc41bcc4d

View File

@ -164,6 +164,9 @@ $.widget( "ui.tooltip", {
.addClass( "ui-tooltip-content" )
.appendTo( tooltip );
tooltip.appendTo( document.body );
if ( $.fn.bgiframe ) {
tooltip.bgiframe();
}
this.tooltips[ id ] = true;
return tooltip;
},