We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7db8bc6 commit c08d3edCopy full SHA for c08d3ed
scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/XML/Calendar.js
@@ -93,7 +93,7 @@ Jsonix.XML.Calendar = Jsonix.Class({
93
initialDate.setUTCMinutes(this.minute || 0);
94
initialDate.setUTCSeconds(this.second || 0);
95
initialDate.setUTCMilliseconds((this.fractionalSecond || 0) * 1000);
96
- var timezoneOffset = -60000 * (this.timezoneOffset || 0);
+ var timezoneOffset = -60000 * (this.timezone || 0);
97
this.date = new Date(initialDate.getTime() + timezoneOffset);
98
},
99
CLASS_NAME : "Jsonix.XML.Calendar"
0 commit comments