Trying some app-side caching in the SSB app.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3725 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2021-12-31 18:42:37 +00:00
parent 4f1b31bce0
commit 4e359c3f5c
4 changed files with 33 additions and 37 deletions

View File

@ -12,7 +12,7 @@ async function main() {
var li = document.getElementById('apps').appendChild(document.createElement('li'));
var a = document.createElement('a');
a.innerText = app;
a.href = '../' + app;
a.href = '/~${core.user.credentials.session.name}/' + app + '/';
a.target = '_top';
li.appendChild(a);
}