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