From: kborchers Date: Tue, 11 Oct 2011 05:06:09 +0000 (-0500) Subject: Popup: Removed the focusout and focusin handlers which are nolonger necessary. Also... X-Git-Tag: 1.9m7~200 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f24ab94f86ddcc4382800f6f1664320dd31a935c;p=jquery-ui.git Popup: Removed the focusout and focusin handlers which are nolonger necessary. Also updated the tooltip style demo to have a little more interactive content. --- diff --git a/demos/popup/tooltip.html b/demos/popup/tooltip.html index 40715d874..184c91b4b 100644 --- a/demos/popup/tooltip.html +++ b/demos/popup/tooltip.html @@ -18,14 +18,9 @@ } }); - $( "#info-link" ).hover( - function( event ) { - $("#more-info").popup( "open" ); - }, - function( event ) { - $("#more-info").popup( "close" ); - } - ); + $( "#info-link" ).mouseover( function( event ) { + $("#more-info").popup( "open" ); + }); });