More whitespace fixes
This commit is contained in:
parent
a49ca59d34
commit
a28a5c67c4
|
@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue