mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
Make the linter happy
This commit is contained in:
parent
9c64e18bcc
commit
4f5ead46ed
1 changed files with 5 additions and 6 deletions
11
js/config.js
11
js/config.js
|
|
@ -1,11 +1,7 @@
|
|||
import skin from "../skins/base-2.91-png.wsz";
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
import llamaAudio from "../mp3/llama-2.91.mp3";
|
||||
|
||||
// This seems to include the `accept-ranges` header, which GitHub Pages does not, and
|
||||
// Safari on iOS requires.
|
||||
llamaAudio =
|
||||
"https://raw.githubusercontent.com/captbaritone/winamp2-js/master/mp3/llama-2.91.mp3";
|
||||
|
||||
/* global SENTRY_DSN */
|
||||
|
||||
const { hash } = window.location;
|
||||
|
|
@ -28,7 +24,10 @@ export const skinUrl = config.skinUrl === undefined ? skin : config.skinUrl;
|
|||
export const initialTracks = config.initialTracks || [
|
||||
{
|
||||
metaData: { artist: "DJ Mike Llama", title: "Llama Whippin' Intro" },
|
||||
url: llamaAudio,
|
||||
// This seems to include the `accept-ranges` header, which GitHub Pages does not, and
|
||||
// Safari on iOS requires.
|
||||
url:
|
||||
"https://raw.githubusercontent.com/captbaritone/winamp2-js/master/mp3/llama-2.91.mp3",
|
||||
duration: 5.322286
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue