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

@ -16,7 +16,10 @@ export default {
}),
computed: {
currentUser () { return this.$store.state.users.currentUser },
style () { return { 'background-image': `url(${this.currentUser.background_image})` } },
background () {
return this.currentUser.background_image || this.$store.state.config.background
},
style () { return { 'background-image': `url(${this.background})` } },
sitename () { return this.$store.state.config.name }
},
methods: {

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 })
})

BIN
static/bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

BIN
static/bgalt.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 323 KiB

View File

@ -1,4 +1,5 @@
{
"name": "Pleroma FE",
"theme": "base16-ashes.css"
"theme": "base16-ashes.css",
"background": "/static/bg.jpg"
}