chore: minor cleanup
This commit is contained in:
parent
e235d80c25
commit
f45eb74c0f
2 changed files with 3 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "6.4.2",
|
"version": "6.4.3",
|
||||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -67,20 +67,11 @@ class NowPlaying extends HTMLElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
get template() {
|
get template() {
|
||||||
return document
|
return document.getElementById(nowPlayingTemplate.id).content.cloneNode(true);
|
||||||
.getElementById(nowPlayingTemplate.id)
|
|
||||||
.content.cloneNode(true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get data() {
|
get data() {
|
||||||
const data = fetch('/api/now-playing', {
|
return fetch('/api/now-playing', { type: 'json' }).then((data) => data.json()).catch((e) => {})
|
||||||
type: 'json',
|
|
||||||
})
|
|
||||||
.then((data) => data.json())
|
|
||||||
.catch(() => {
|
|
||||||
loading.style.display = 'none'
|
|
||||||
})
|
|
||||||
return data;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue