Been a while since I exported these apps.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3880 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2022-05-26 00:03:46 +00:00
parent 842633f6d1
commit 04ec425c9c
11 changed files with 79 additions and 33 deletions

View File

@ -12,7 +12,7 @@ async function main() {
<script>
function populate_apps(id, name, apps) {
var list = document.getElementById(id);
for (let app of Object.keys(apps)) {
for (let app of Object.keys(apps).sort()) {
var li = list.appendChild(document.createElement('li'));
var a = document.createElement('a');
a.innerText = app;