watch-party/frontend/create.mjs
maia tillie arson crimew ef50f2c4d9 add /sync command
this command resyncs you with the watch party

also added: /help command
2022-02-14 15:30:42 +01:00

11 lines
254 B
JavaScript

import { setupCreateSessionForm } from "./lib/create-session.mjs?v=9";
const main = () => {
setupCreateSessionForm();
};
if (document.readyState === "complete") {
main();
} else {
document.addEventListener("DOMContentLoaded", main);
}