diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-23 16:41:43 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-23 16:41:43 +0100 |
| commit | 1e31b71afd1ead4644e99df6838a55481176e09a (patch) | |
| tree | f1107a55f2b2f6ed838190ac259cd5b698bcc56f /static/index.js | |
| parent | 2e8f59aaeb731dd726f8d49d120ae4cc8a7cf512 (diff) | |
add fonts and create-user endpoint
Diffstat (limited to 'static/index.js')
| -rw-r--r-- | static/index.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/static/index.js b/static/index.js index d5d5c60..28c6228 100644 --- a/static/index.js +++ b/static/index.js @@ -1,8 +1,9 @@ import * as sfw from 'sfw'; - import * as api from './api/index.js'; - import { literal as m } from './month.js'; +import * as service_worker from './service-worker/index.js'; + +//service_worker.register(); import LoginView from './pages/login/index.js'; import MainView from './pages/main/index.js'; @@ -60,6 +61,7 @@ const settings = SettingsView.new({ onlogout: () => { login.show(); main.active_view = image_viewer; + settings.profile = null; }, }); |