mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
[fix] Use dedicated domain for apps list.
This commit is contained in:
parent
2e4a5d4d39
commit
e0ef4dfedd
4 changed files with 4 additions and 4 deletions
2
apps.md
2
apps.md
|
@ -53,7 +53,7 @@ function timeConverter(UNIX_timestamp) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$.getJSON('/list.json', function(app_list) {
|
$.getJSON('https://app.yunohost.org/official.json', function(app_list) {
|
||||||
// Cast as array
|
// Cast as array
|
||||||
var app_list = $.map(app_list, function(el) { return el; });
|
var app_list = $.map(app_list, function(el) { return el; });
|
||||||
// Sort alpha
|
// Sort alpha
|
||||||
|
|
|
@ -53,7 +53,7 @@ function timeConverter(UNIX_timestamp) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$.getJSON('/list.json', function(app_list) {
|
$.getJSON('https://app.yunohost.org/official.json', function(app_list) {
|
||||||
// Cast as array
|
// Cast as array
|
||||||
var app_list = $.map(app_list, function(el) { return el; });
|
var app_list = $.map(app_list, function(el) { return el; });
|
||||||
// Sort alpha
|
// Sort alpha
|
||||||
|
|
|
@ -67,7 +67,7 @@ function timeConverter(UNIX_timestamp) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$.getJSON('/community.json', function(app_list) {
|
$.getJSON('https://app.yunohost.org/community.json', function(app_list) {
|
||||||
// Cast as array
|
// Cast as array
|
||||||
var app_list = $.map(app_list, function(el) { return el; });
|
var app_list = $.map(app_list, function(el) { return el; });
|
||||||
// Sort alpha
|
// Sort alpha
|
||||||
|
|
|
@ -65,7 +65,7 @@ function timeConverter(UNIX_timestamp) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$.getJSON('/community.json', function(app_list) {
|
$.getJSON('https://app.yunohost.org/community.json', function(app_list) {
|
||||||
// Cast as array
|
// Cast as array
|
||||||
var app_list = $.map(app_list, function(el) { return el; });
|
var app_list = $.map(app_list, function(el) { return el; });
|
||||||
// Sort alpha
|
// Sort alpha
|
||||||
|
|
Loading…
Reference in a new issue