Enable new windows via the URL hash

This commit is contained in:
Jordan Eldredge 2016-08-10 18:22:22 -07:00
parent b27a9ea1b0
commit 92060fbb07

View file

@ -15,8 +15,11 @@ import Hotkeys from './hotkeys';
import Skin from './components/Skin.jsx';
if (new Browser(window).isCompatible) {
const playlist = false; // Turn on the incomplete playlist window
const equalizer = false; // Turn on the incomplete equalizer window
const hash = window.location.hash;
// Turn on the incomplete playlist window
const playlist = hash.includes('playlist');
// Turn on the incomplete equalizer window
const equalizer = hash.includes('equalizer');
const winamp = Winamp;
const store = createStore(
reducer,