Perm fix for daylight savings. The user is setting the time, its not programatically determined as in datepicker
This commit is contained in:
parent
6ab4dde85e
commit
452e7e994a
10
jquery-ui-timepicker-addon.js
vendored
10
jquery-ui-timepicker-addon.js
vendored
|
@ -675,15 +675,6 @@ $.datepicker._setTime = function(inst, date) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
//#######################################################################################
|
|
||||||
// datepicker doesn't care about hours.. we do.. leave dp alone this time..
|
|
||||||
//#######################################################################################
|
|
||||||
$.datepicker._daylightSavingAdjustDateTime = function(date) {
|
|
||||||
if (!date) return null;
|
|
||||||
date.setHours(date.getHours() > 12 ? date.getHours() + 2 : date.getHours());
|
|
||||||
return date;
|
|
||||||
};
|
|
||||||
|
|
||||||
//#######################################################################################
|
//#######################################################################################
|
||||||
// override setDate() to allow getting time too within Date object
|
// override setDate() to allow getting time too within Date object
|
||||||
//#######################################################################################
|
//#######################################################################################
|
||||||
|
@ -708,7 +699,6 @@ $.datepicker._getDate = function(inst) {
|
||||||
return startDate = (!inst.currentYear || (inst.input && inst.input.val() == '')) ?
|
return startDate = (!inst.currentYear || (inst.input && inst.input.val() == '')) ?
|
||||||
null :
|
null :
|
||||||
(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