Skip to content

Commit

Permalink
Merge pull request #5242 from yscumc/patch-1
Browse files Browse the repository at this point in the history
Fix for minutes tz calculation in document properties
  • Loading branch information
timvandermeij committed Aug 29, 2014
2 parents 61eac43 + 4acb744 commit 8042a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/document_properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ var DocumentProperties = {
minutes += offsetMinutes;
} else if (utRel === '+') {
hours -= offsetHours;
minutes += offsetMinutes;
minutes -= offsetMinutes;
}

// Return the new date format from the user's locale.
Expand Down

0 comments on commit 8042a4b

Please sign in to comment.