mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
15 lines
346 B
Markdown
15 lines
346 B
Markdown
|
#Apps
|
||
|
|
||
|
<ul id="app-list"></ul>
|
||
|
|
||
|
<script>
|
||
|
$(document).ready(function () {
|
||
|
$.getJSON('http://app.yunohost.org/list.json', function(app_list) {
|
||
|
console.log(app_list);
|
||
|
$.each(app_list, function(app_id, infos) {
|
||
|
$('#app-list').append('<li><a data-app-id="'+ app_id +'">'+ infos.manifest.name +'</a></li>');
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
</script>
|