aboutsummaryrefslogtreecommitdiff
path: root/viewer
diff options
context:
space:
mode:
authorZero~Informatique2020-02-28 04:05:02 +0100
committerZero~Informatique2020-02-28 04:05:02 +0100
commit5672ee664abece41adeb59a8b2863d58d1b9b380 (patch)
tree33754f4ba6a0ca0fa3b098efe9127e8570a9a06c /viewer
parentafa8a533ebb6943405cc5933167634c144e7f8c7 (diff)
downloadldgallery-5672ee664abece41adeb59a8b2863d58d1b9b380.tar.gz
viewer: show/hide the left panel depending on the viewport's width at init
GitHub: Resolves #103
Diffstat (limited to 'viewer')
-rw-r--r--viewer/.env1
-rw-r--r--viewer/src/store/uiStore.ts2
2 files changed, 2 insertions, 1 deletions
diff --git a/viewer/.env b/viewer/.env
index 0914292..4721300 100644
--- a/viewer/.env
+++ b/viewer/.env
@@ -3,3 +3,4 @@
3VUE_APP_I18N_LOCALE=en 3VUE_APP_I18N_LOCALE=en
4VUE_APP_I18N_FALLBACK_LOCALE=en 4VUE_APP_I18N_FALLBACK_LOCALE=en
5VUE_APP_DATA_URL=./ 5VUE_APP_DATA_URL=./
6VUE_APP_FULLWIDTH_LIMIT=1500
diff --git a/viewer/src/store/uiStore.ts b/viewer/src/store/uiStore.ts
index 1e63b3e..1d0d62f 100644
--- a/viewer/src/store/uiStore.ts
+++ b/viewer/src/store/uiStore.ts
@@ -27,7 +27,7 @@ const VuexModule = createModule({
27export default class UIStore extends VuexModule { 27export default class UIStore extends VuexModule {
28 28
29 fullscreen: boolean = false; 29 fullscreen: boolean = false;
30 fullWidth: boolean = true; 30 fullWidth: boolean = window.innerWidth < Number(process.env.VUE_APP_FULLWIDTH_LIMIT);
31 searchMode: boolean = false; 31 searchMode: boolean = false;
32 32
33 // --- 33 // ---