Add logo.

This commit is contained in:
Roger Braun 2017-02-16 17:44:36 +01:00
parent a3b2be09b3
commit ce5b3d4c92
6 changed files with 10 additions and 3 deletions

View file

@ -71,8 +71,9 @@ new Vue({
window.fetch('/static/config.json')
.then((res) => res.json())
.then(({name, theme, background}) => {
.then(({name, theme, background, logo}) => {
store.dispatch('setOption', { name: 'name', value: name })
store.dispatch('setOption', { name: 'theme', value: theme })
store.dispatch('setOption', { name: 'background', value: background })
store.dispatch('setOption', { name: 'logo', value: logo })
})