mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 17:30:09 +02:00
Update document_properties.js
Fix for minutes tz calculation
This commit is contained in:
parent
61eac43c9b
commit
4acb744f77
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue