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
f40568dbde
commit
1a5f2902e3
1 changed files with 10 additions and 2 deletions
12
apps_fr.md
12
apps_fr.md
|
@ -37,8 +37,16 @@ function timeConverter(UNIX_timestamp) {
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$.getJSON('/list.json', function(app_list) {
|
$.getJSON('/list.json', function(app_list) {
|
||||||
console.log(app_list);
|
// Cast as array
|
||||||
$.each(app_list, function(app_id, infos) {
|
var app_list = $.map(app_list, function(el) { return el; });
|
||||||
|
// Sort alpha
|
||||||
|
app_list.sort(function(a, b){
|
||||||
|
if (a.manifest.id > b.manifest.id) {return 1;}
|
||||||
|
else if (a.manifest.id < b.manifest.id) {return -1;}
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
$.each(app_list, function(k, infos) {
|
||||||
|
app_id = infos.manifest.id;
|
||||||
if (typeof infos.manifest.description.fr === 'undefined') {
|
if (typeof infos.manifest.description.fr === 'undefined') {
|
||||||
infos.manifest.description.fr = infos.manifest.description.en;
|
infos.manifest.description.fr = infos.manifest.description.en;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue