Skip to content

Commit 088c7da

Browse files
committed
Update date formatting.
1 parent 5971849 commit 088c7da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2616,7 +2616,7 @@ Date.prototype.format = function(format, resource) {
26162616
return (self.getMonth() + 1);
26172617
case 'ddd':
26182618
var m = DAYS[self.getDay()];
2619-
return (F.resource(resource, m) || m).substring(0, 3);
2619+
return (F.resource(resource, m) || m).substring(0, 2).toUpperCase();
26202620
case 'dddd':
26212621
var m = DAYS[self.getDay()];
26222622
return (F.resource(resource, m) || m);

0 commit comments

Comments
 (0)