Add /cyb/ background by sonyam.

This commit is contained in:
Roger Braun 2017-02-16 16:59:06 +01:00
parent d7c9261dab
commit a3b2be09b3
5 changed files with 8 additions and 3 deletions

View file

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