mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-28 12:36:35 +00:00
6 lines
289 B
JavaScript
6 lines
289 B
JavaScript
const { hash } = window.location;
|
|
// Turn on the incomplete playlist window
|
|
export const playlistEnabled = hash.includes("playlist");
|
|
// Turn on the incomplete equalizer window
|
|
export const equalizerEnabled = hash.includes("equalizer");
|
|
export const noMarquee = hash.includes("!marquee");
|