mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-12 00:38:51 +00:00
Monotone-Parent: 0adbb87af7f34f8ebf06697f0903dcf61cea28a2
Monotone-Revision: eff15e29771ade513bbfeb9c50f15c3845ab5ebe Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-09-17T12:34:01 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -125,11 +125,11 @@ Date.prototype.getHourString = function() {
|
||||
}
|
||||
|
||||
Date.prototype.getDisplayHoursString = function() {
|
||||
var hoursString = "" + this.getHours();
|
||||
var hoursString = "" + this.getUTCHours();
|
||||
if (hoursString.length == 1)
|
||||
hoursString = '0' + hoursString;
|
||||
|
||||
var minutesString = "" + this.getMinutes();
|
||||
var minutesString = "" + this.getUTCMinutes();
|
||||
if (minutesString.length == 1)
|
||||
minutesString = '0' + minutesString;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user