mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Fix set_min() & set_max() did not work in Firefox
This commit is contained in:
parent
d37a8abca0
commit
ed57923c76
@ -367,7 +367,7 @@ String: A string in the user\'s date format, or a relative date. Relative dates
|
||||
{
|
||||
_value = new Date(_value);
|
||||
// Add timezone offset back in, or formatDate will lose those hours
|
||||
var formatDate = new Date(_value + this.date.getTimezoneOffset() * 60 * 1000);
|
||||
var formatDate = new Date(_value.valueOf() + this.date.getTimezoneOffset() * 60 * 1000);
|
||||
if(this._type == 'date')
|
||||
{
|
||||
_value = jQuery.datepicker.formatDate(this.dateFormat, formatDate);
|
||||
@ -421,7 +421,7 @@ String: A string in the user\'s date format, or a relative date. Relative dates
|
||||
{
|
||||
_value = new Date(_value);
|
||||
// Add timezone offset back in, or formatDate will lose those hours
|
||||
var formatDate = new Date(_value + this.date.getTimezoneOffset() * 60 * 1000);
|
||||
var formatDate = new Date(_value.valueOf() + this.date.getTimezoneOffset() * 60 * 1000);
|
||||
if(this._type == 'date')
|
||||
{
|
||||
_value = jQuery.datepicker.formatDate(this.dateFormat, formatDate);
|
||||
|
Loading…
Reference in New Issue
Block a user