mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 21:13:23 +01:00
fix IDE warning
This commit is contained in:
parent
7cafc2fd9c
commit
866cb11f50
@ -784,7 +784,7 @@ var et2_date_ro = et2_valueWidget.extend([et2_IDetachedDOM],
|
||||
if(typeof _value == 'string' && _value.match(/(\d{4})-(\d{2})-(\d{2})T(\d{2})\:(\d{2})\:(\d{2})(?:\.\d{3})?(?:Z|[+-](\d{2})\:(\d{2}))/))
|
||||
{
|
||||
this.date = new Date(_value);
|
||||
this.date = new Date(this.date.valueOf() + (this.date.getTimezoneOffset()*60*1000))
|
||||
this.date = new Date(this.date.valueOf() + (this.date.getTimezoneOffset()*60*1000));
|
||||
}
|
||||
else if(typeof _value == 'string' && isNaN(_value))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user