From 8c774cacd1368dc6bab858e23cd4a74155f871e7 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 10 Oct 2022 18:44:00 +0300 Subject: [PATCH] tweaks... Signed-off-by: Alex A. Naanou --- browser.js | 8 ++++---- pwiki/page.js | 2 +- pwiki2.html | 4 ++++ pwiki2.js | 1 + 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/browser.js b/browser.js index fc2df1a..f6e0d5e 100755 --- a/browser.js +++ b/browser.js @@ -62,18 +62,18 @@ Promise.all([ // persistent stores... // - store.update('/Stores/local', { + store.update('/Stores/localStorage', { __proto__: localstoragestore.localStorageStore, data: localStorage, }), - store.update('Stores/session', { + store.update('Stores/sessionStorage', { __proto__: localstoragestore.localStorageStore, data: sessionStorage, }), - store.update('Stores/pouch', { + store.update('Stores/PouchDB', { __proto__: pouchdbstore.PouchDBStore, }), - store.update('Stores/idb', { + store.update('Stores/IndexedDB', { __proto__: indexeddb.IndexedDBStore, }), diff --git a/pwiki/page.js b/pwiki/page.js index 0d1020c..c54b68f 100755 --- a/pwiki/page.js +++ b/pwiki/page.js @@ -1994,7 +1994,7 @@ module.System = {
diff --git a/pwiki2.html b/pwiki2.html index fb8eab2..036ea65 100755 --- a/pwiki2.html +++ b/pwiki2.html @@ -160,6 +160,10 @@ body.loading .page.spinner span { } +.tree-page-title:empty:after { + content: "/"; +} + diff --git a/pwiki2.js b/pwiki2.js index d8751ab..aa6123e 100755 --- a/pwiki2.js +++ b/pwiki2.js @@ -16,6 +16,7 @@ * * * XXX BUG: can't .get(..) data from substore root... +* ...updating it seems to work fine... * XXX IndexedDB: after editing a page for some reason we do not see the * final version until a full refresh -- cache??? * ...this seems to disappeared after moving external stores