From 1856a84d590e1711935b72d1441851f4595f4f7d Mon Sep 17 00:00:00 2001 From: "Richard D. Worth" Date: Wed, 9 Nov 2011 08:45:10 -0500 Subject: [PATCH] Popup: increased delay between focusout and focusin/mouseup as it was sometimes not high enough --- ui/jquery.ui.popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.popup.js b/ui/jquery.ui.popup.js index f6585b761..128464cc2 100644 --- a/ui/jquery.ui.popup.js +++ b/ui/jquery.ui.popup.js @@ -168,7 +168,7 @@ $.widget( "ui.popup", { // handle the closing instead of opening again this.closeTimer = this._delay( function() { this.close( event ); - }, 100); + }, 150); }, focusin: function( event ) { clearTimeout( this.closeTimer ); -- 2.39.5