mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Datepicker: Moved the setting of _datepickerShowing to after postProcess to prevent being able to tab away leaving the datepicker open. Fixed #6775 - DatePicker remains open when tabbing out
This commit is contained in:
parent
4c218eeb0a
commit
73602652ac
2
ui/jquery.ui.datepicker.js
vendored
2
ui/jquery.ui.datepicker.js
vendored
@ -648,7 +648,6 @@ $.extend(Datepicker.prototype, {
|
||||
var showAnim = $.datepicker._get(inst, 'showAnim');
|
||||
var duration = $.datepicker._get(inst, 'duration');
|
||||
var postProcess = function() {
|
||||
$.datepicker._datepickerShowing = true;
|
||||
var cover = inst.dpDiv.find('iframe.ui-datepicker-cover'); // IE6- only
|
||||
if( !! cover.length ){
|
||||
var borders = $.datepicker._getBorders(inst.dpDiv);
|
||||
@ -657,6 +656,7 @@ $.extend(Datepicker.prototype, {
|
||||
}
|
||||
};
|
||||
inst.dpDiv.zIndex($(input).zIndex()+1);
|
||||
$.datepicker._datepickerShowing = true;
|
||||
if ($.effects && $.effects[showAnim])
|
||||
inst.dpDiv.show(showAnim, $.datepicker._get(inst, 'showOptions'), duration, postProcess);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user