Merge pull request #5242 from yscumc/patch-1
Fix for minutes tz calculation in document properties
This commit is contained in:
commit
8042a4b783
@ -184,7 +184,7 @@ var DocumentProperties = {
|
|||||||
minutes += offsetMinutes;
|
minutes += offsetMinutes;
|
||||||
} else if (utRel === '+') {
|
} else if (utRel === '+') {
|
||||||
hours -= offsetHours;
|
hours -= offsetHours;
|
||||||
minutes += offsetMinutes;
|
minutes -= offsetMinutes;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the new date format from the user's locale.
|
// Return the new date format from the user's locale.
|
||||||
|
Loading…
Reference in New Issue
Block a user