temp fix for daylight savings
This commit is contained in:
parent
babcbd5606
commit
6ab4dde85e
3
jquery-ui-timepicker-addon.js
vendored
3
jquery-ui-timepicker-addon.js
vendored
|
@ -707,7 +707,8 @@ $.datepicker._getDate = function(inst) {
|
||||||
if (tp_inst)
|
if (tp_inst)
|
||||||
return startDate = (!inst.currentYear || (inst.input && inst.input.val() == '')) ?
|
return startDate = (!inst.currentYear || (inst.input && inst.input.val() == '')) ?
|
||||||
null :
|
null :
|
||||||
this._daylightSavingAdjustDateTime(new Date(inst.currentYear, inst.currentMonth, inst.currentDay, tp_inst.hour, tp_inst.minute, tp_inst.second));
|
(new Date(inst.currentYear, inst.currentMonth, inst.currentDay, tp_inst.hour, tp_inst.minute, tp_inst.second));
|
||||||
|
//this._daylightSavingAdjustDateTime(new Date(inst.currentYear, inst.currentMonth, inst.currentDay, tp_inst.hour, tp_inst.minute, tp_inst.second));
|
||||||
else return $.datepicker._base_getDate(inst);
|
else return $.datepicker._base_getDate(inst);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue