Skip to content
Snippets Groups Projects
Commit 2e543879 authored by Benoit Allard's avatar Benoit Allard
Browse files

web: Output a correct date in short format (issue2902)

parent 5233df79
No related branches found
No related tags found
No related merge requests found
......@@ -160,6 +160,25 @@
if (count > 1){
ret = ret + 's';
}
return ret;
}
function shortdate(date){
var ret = date.getFullYear() + '-';
// getMonth() gives a 0-11 result
var month = date.getMonth() + 1;
if (month <= 9){
ret += '0' + month;
} else {
ret += month;
}
ret += '-';
var day = date.getDate();
if (day <= 9){
ret += '0' + day;
} else {
ret += day;
}
return ret;
}
......@@ -163,10 +182,9 @@
return ret;
}
function age(datestr){
var now = new Date();
var once = new Date(datestr);
function age(datestr){
var now = new Date();
var once = new Date(datestr);
if (isNaN(once.getTime())){
// parsing error
return datestr;
......@@ -184,7 +202,7 @@
}
if (delta > (2 * scales.year)){
return once.getFullYear() + '-' + once.getMonth() + '-' + once.getDate();
return shortdate(once);
}
for (unit in scales){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment