More whitespace fixes

This commit is contained in:
Your New SJW Waifu 2019-10-08 10:36:26 -05:00
parent a49ca59d34
commit a28a5c67c4
1 changed files with 18 additions and 16 deletions

View File

@ -1,29 +1,31 @@
const Banner = {
data: function() { return {
url: "https://neckbeard.xyz",
imageUrl: "/static/banner.png",
imageSrc: "/static/banner.png",
timer: ''
} },
created() {
this.updateBanner()
data: function () {
return {
url: "https://neckbeard.xyz",
imageUrl: "/static/banner.png",
imageSrc: "/static/banner.png",
timer: ''
}
},
created () {
this.updateBanner ()
this.timer = setInterval(this.updateBanner, 300000)
},
beforeDestroy() {
beforeDestroy () {
clearInterval(this.timer)
},
methods: {
updateBanner() {
updateBanner () {
const componentThis = this
const req = new XMLHttpRequest()
req.addEventListener("load", function() {
const json = JSON.parse(this.responseText)
req.addEventListener ("load", function () {
const json = JSON.parse (this.responseText)
componentThis.url = json.bannerUrl
console.log("new banner: "+componentThis.url)
console.log("new banner: " + componentThis.url)
componentThis.imageSrc = componentThis.imageUrl + '?bustcache='+(new Date()).getTime()
})
req.open("GET", "/static/config.json")
req.send()
})
req.open("GET", "/static/config.json")
req.send()
}
}
}