From: Scott González Date: Sun, 29 May 2011 23:28:35 +0000 (-0400) Subject: Tooltip: Use bgiframe if available X-Git-Tag: 1.9m6~111^2~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0fc41bcc4d7f084463a8b68f225789964b009d0d;p=jquery-ui.git Tooltip: Use bgiframe if available --- diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index 44398a871..7722e6472 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -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; },