From f24ab94f86ddcc4382800f6f1664320dd31a935c Mon Sep 17 00:00:00 2001 From: kborchers Date: Tue, 11 Oct 2011 00:06:09 -0500 Subject: Popup: Removed the focusout and focusin handlers which are nolonger necessary. Also updated the tooltip style demo to have a little more interactive content. --- ui/jquery.ui.popup.js | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'ui') diff --git a/ui/jquery.ui.popup.js b/ui/jquery.ui.popup.js index ce7a565db..4726f3a61 100644 --- a/ui/jquery.ui.popup.js +++ b/ui/jquery.ui.popup.js @@ -108,19 +108,6 @@ $.widget( "ui.popup", { }); } - this._bind({ - focusout: function( event ) { - // use a timer to allow click to clear it and letting that - // handle the closing instead of opening again - this.closeTimer = this._delay( function() { - this.close( event ); - }, 100); - }, - focusin: function( event ) { - clearTimeout( this.closeTimer ); - } - }); - this._bind({ // TODO only triggered on element if it can receive focus // bind to document instead? -- cgit v1.2.3