Skip to content
Snippets Groups Projects

Mobile notifications in nav bar, separate mobile navbar to its own component

Merged Shpuld Shpludson requested to merge feature/mobile-improvements-3 into develop
1 unresolved thread
Files
25
+ 4
1
import Vue from 'vue'
import VueRouter from 'vue-router'
import routes from './routes'
import App from '../App.vue'
import { windowWidth } from '../services/window_utils/window_utils'
const getStatusnetConfig = async ({ store }) => {
try {
@@ -252,6 +252,9 @@ const afterStoreSetup = async ({ store, i18n }) => {
})
}
const width = windowWidth()
store.dispatch('setMobileLayout', width <= 800)
// Now we can try getting the server settings and logging in
await Promise.all([
checkOAuthToken({ store }),
Loading