Fix bug: Datepicker is closed on blur event (merge pull-request #1446)
This commit is contained in:
commit
0e83283ddc
|
|
@ -4,6 +4,7 @@ Version 1.0.21 (unreleased)
|
|||
Bug fixes:
|
||||
|
||||
* cs_CZ display the wrong locale in datetime picker
|
||||
* Datepicker is closed on blur event
|
||||
|
||||
Version 1.0.20
|
||||
--------------
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -125,8 +125,6 @@ App.prototype.datePicker = function() {
|
|||
// timeFormat: 'h:mm tt',
|
||||
constrainInput: false
|
||||
});
|
||||
|
||||
$(".hasDatepicker").on("blur", function(e) { $(this).datepicker("hide"); });
|
||||
};
|
||||
|
||||
App.prototype.taskAutoComplete = function() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue