forked from lavender/watch-party
Merge branch 'main' of lavender.software:lavender/watch-party
commit
048af96a19
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>watch party :D</title>
|
||||
<link rel="stylesheet" href="/styles.css?v=19ef791" />
|
||||
<link rel="stylesheet" href="/styles.css?v=a6a856c" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -47,6 +47,6 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<script type="module" src="/create.mjs?v=19ef791"></script>
|
||||
<script type="module" src="/create.mjs?v=a6a856c"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { setupCreateSessionForm } from "./lib/create-session.mjs?v=19ef791";
|
||||
import { setupCreateSessionForm } from "./lib/create-session.mjs?v=a6a856c";
|
||||
|
||||
const main = () => {
|
||||
setupCreateSessionForm();
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>watch party :D</title>
|
||||
<link rel="stylesheet" href="/styles.css?v=19ef791" />
|
||||
<link rel="stylesheet" href="/styles.css?v=a6a856c" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -64,6 +64,6 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<script type="module" src="/main.mjs?v=19ef791"></script>
|
||||
<script type="module" src="/main.mjs?v=a6a856c"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -2,8 +2,8 @@ import {
|
|||
setDebounce,
|
||||
setVideoTime,
|
||||
setPlaying,
|
||||
} from "./watch-session.mjs?v=19ef791";
|
||||
import { emojify, findEmojis } from "./emojis.mjs?v=19ef791";
|
||||
} from "./watch-session.mjs?v=a6a856c";
|
||||
import { emojify, findEmojis } from "./emojis.mjs?v=a6a856c";
|
||||
|
||||
function setCaretPosition(elem, caretPos) {
|
||||
if (elem.createTextRange) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSession } from "./watch-session.mjs?v=19ef791";
|
||||
import { createSession } from "./watch-session.mjs?v=a6a856c";
|
||||
|
||||
export const setupCreateSessionForm = () => {
|
||||
const form = document.querySelector("#create-session-form");
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { joinSession } from "./watch-session.mjs?v=19ef791";
|
||||
import { joinSession } from "./watch-session.mjs?v=a6a856c";
|
||||
|
||||
/**
|
||||
* @param {HTMLInputElement} field
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import { setupVideo } from "./video.mjs?v=19ef791";
|
||||
import { setupVideo } from "./video.mjs?v=a6a856c";
|
||||
import {
|
||||
setupChat,
|
||||
logEventToChat,
|
||||
updateViewerList,
|
||||
} from "./chat.mjs?v=19ef791";
|
||||
} from "./chat.mjs?v=a6a856c";
|
||||
import ReconnectingWebSocket from "./reconnecting-web-socket.mjs";
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { setupJoinSessionForm } from "./lib/join-session.mjs?v=19ef791";
|
||||
import { setupJoinSessionForm } from "./lib/join-session.mjs?v=a6a856c";
|
||||
|
||||
const main = () => {
|
||||
setupJoinSessionForm();
|
||||
|
|
Loading…
Reference in New Issue