mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Update apps_fr.md
This commit is contained in:
parent
de9e7aaab9
commit
1a54a758f5
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue