From f24ab94f86ddcc4382800f6f1664320dd31a935c Mon Sep 17 00:00:00 2001 From: kborchers Date: Tue, 11 Oct 2011 00:06:09 -0500 Subject: [PATCH] Popup: Removed the focusout and focusin handlers which are nolonger necessary. Also updated the tooltip style demo to have a little more interactive content. --- demos/popup/tooltip.html | 15 +++++---------- ui/jquery.ui.popup.js | 13 ------------- 2 files changed, 5 insertions(+), 23 deletions(-) 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" ); + }); });