1
0
Fork 0
mirror of https://github.com/YunoHost/doc.git synced 2024-09-03 20:06:26 +02:00

Merge pull request from julienmalik/patch-4

Update apps.md
This commit is contained in:
Alexis Gavoty 2013-12-09 06:32:39 -08:00
commit 67645222c1

View file

@ -31,8 +31,8 @@ function timeConverter(UNIX_timestamp) {
var date = a.getDate();
var hour = a.getHours();
var min = a.getMinutes();
if (hour == 0) { hour = '00'; }
if (min == 0) { min = '00'; }
if (hour < 10) { hour = '0' + hour; }
if (min < 10) { min = '0' + min; }
var time = date+' '+month+' '+year+' at '+hour+':'+min;
return time;
}