Fix bug: Datepicker is closed on blur event (merge pull-request #1446)

This commit is contained in:
Frederic Guillot 2015-11-12 07:14:46 -05:00
commit 0e83283ddc
3 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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() {