still-alive/assets/js/player.mjs

14 lines
No EOL
459 B
JavaScript

import { default as Player } from "./modules/StillAlivePlayer.mjs";
if(typeof BroadcastChannel !== "function" || !window.location.hash) {
close();
const page = window.location.pathname.split("/");
const url = window.location.href.replace(page[page.length - 1],"");
window.location.replace(url);
};
const name = window.location.hash.substring(1);
document.body.className = name;
const target = document.getElementById("player");
new Player(target,name);