diff options
author | OzoneGrif | 2020-02-28 12:12:03 +0100 |
---|---|---|
committer | GitHub | 2020-02-28 12:12:03 +0100 |
commit | fe699fb16018aa22b121b48a85ef228f4b5c6bfd (patch) | |
tree | a85a29524e329f16d0131853cfab426307ce529e /viewer/src/store | |
parent | 8d889762872501eebd5edb5d7cacddfd4cd55ad4 (diff) | |
parent | df98cc52700f77b06ce986ccb2137ec055a0e66c (diff) | |
download | ldgallery-fe699fb16018aa22b121b48a85ef228f4b5c6bfd.tar.gz |
Merge pull request #170 from pacien/oz-responsive-left-panel
viewer: show/hide the left panel depending on the viewport's width at…
Diffstat (limited to 'viewer/src/store')
-rw-r--r-- | viewer/src/store/uiStore.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/store/uiStore.ts b/viewer/src/store/uiStore.ts index 21f9ce9..2bd315c 100644 --- a/viewer/src/store/uiStore.ts +++ b/viewer/src/store/uiStore.ts | |||
@@ -27,7 +27,7 @@ const VuexModule = createModule({ | |||
27 | export default class UIStore extends VuexModule { | 27 | export 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 | // --- |