remove window width copypasta

This commit is contained in:
shpuld 2019-04-01 22:41:34 +03:00
parent c06bcf3303
commit 2879495b8a
3 changed files with 11 additions and 5 deletions

View file

@ -1,8 +1,8 @@
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 {
@ -230,7 +230,7 @@ const afterStoreSetup = async ({ store, i18n }) => {
})
}
const width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth
const width = windowWidth()
store.dispatch('setMobileLayout', width <= 800)
const apiConfig = await getStatusnetConfig({ store })