diff options
author | Richard D. Worth <rdworth@gmail.com> | 2011-11-09 08:45:10 -0500 |
---|---|---|
committer | Richard D. Worth <rdworth@gmail.com> | 2011-11-09 08:45:10 -0500 |
commit | 1856a84d590e1711935b72d1441851f4595f4f7d (patch) | |
tree | f2c1b05a7c3531b42967a96e2d85931360214c43 /ui/jquery.ui.popup.js | |
parent | b90d83c6c4e3f5e328d5557aa35ce9fbded6fd0f (diff) | |
download | jquery-ui-1856a84d590e1711935b72d1441851f4595f4f7d.tar.gz jquery-ui-1856a84d590e1711935b72d1441851f4595f4f7d.zip |
Popup: increased delay between focusout and focusin/mouseup as it was sometimes not high enough
Diffstat (limited to 'ui/jquery.ui.popup.js')
-rw-r--r-- | ui/jquery.ui.popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); |