-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
The system to show or hide gui+stage stuff is not optimal
For now we give a mixin to pages we want the gui that show and hide on mount/destroy
Line: 216
trakr.app//components/AppBar/Settings.vue
Lines 213 to 223 in e045d0a
| } | |
| }, | |
| toggleGui (w) { | |
| // FIXME: lil gui can be shown if not on a three page | |
| // category=lilgui | |
| // The system to show or hide gui+stage stuff is not optimal | |
| // For now we give a mixin to pages we want the gui that show and hide on mount/destroy | |
| if (w) { | |
| this.$cookies.set('gui', true, { path: '/', maxAge: 60 * 60 * 24 * 7 }) | |
| document.getElementsByClassName('guicontainer')[0].classList.remove('hide') |
Reactions are currently unavailable