mirror of
https://git.lavender.software/lavender/watch-party.git
synced 2024-11-24 02:47:43 +00:00
ef50f2c4d9
this command resyncs you with the watch party also added: /help command
11 lines
254 B
JavaScript
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);
|
|
}
|