forked from lavender/watch-party
bust cache
parent
ee93fb84af
commit
b72a7d11d7
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>watch party :D</title>
|
||||
<link rel="stylesheet" href="/styles.css?v=048af96" />
|
||||
<link rel="stylesheet" href="/styles.css?v=ee93fb" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -47,6 +47,6 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<script type="module" src="/create.mjs?v=048af96"></script>
|
||||
<script type="module" src="/create.mjs?v=ee93fb"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { setupCreateSessionForm } from "./lib/create-session.mjs?v=048af96";
|
||||
import { setupCreateSessionForm } from "./lib/create-session.mjs?v=ee93fb";
|
||||
|
||||
const main = () => {
|
||||
setupCreateSessionForm();
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>watch party :D</title>
|
||||
<link rel="stylesheet" href="/styles.css?v=048af96" />
|
||||
<link rel="stylesheet" href="/styles.css?v=ee93fb" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -64,6 +64,6 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<script type="module" src="/main.mjs?v=048af96"></script>
|
||||
<script type="module" src="/main.mjs?v=ee93fb"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -2,11 +2,11 @@ import {
|
|||
setDebounce,
|
||||
setVideoTime,
|
||||
setPlaying,
|
||||
} from "./watch-session.mjs?v=048af96";
|
||||
import { emojify, findEmojis } from "./emojis.mjs?v=048af96";
|
||||
import { linkify } from "./links.mjs?v=048af96";
|
||||
import { joinSession } from "./watch-session.mjs?v=048af96";
|
||||
import { pling } from "./pling.mjs?v=048af96"
|
||||
} from "./watch-session.mjs?v=ee93fb";
|
||||
import { emojify, findEmojis } from "./emojis.mjs?v=ee93fb";
|
||||
import { linkify } from "./links.mjs?v=ee93fb";
|
||||
import { joinSession } from "./watch-session.mjs?v=ee93fb";
|
||||
import { pling } from "./pling.mjs?v=ee93fb"
|
||||
import { state } from "./state.mjs";
|
||||
|
||||
function setCaretPosition(elem, caretPos) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSession } from "./watch-session.mjs?v=048af96";
|
||||
import { createSession } from "./watch-session.mjs?v=ee93fb";
|
||||
|
||||
export const setupCreateSessionForm = () => {
|
||||
const form = document.querySelector("#create-session-form");
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { joinSession } from "./watch-session.mjs?v=048af96";
|
||||
import { joinSession } from "./watch-session.mjs?v=ee93fb";
|
||||
import { state } from "./state.mjs";
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { joinSession } from "./watch-session.mjs?v=048af96";
|
||||
import { joinSession } from "./watch-session.mjs?v=ee93fb";
|
||||
import { state } from "./state.mjs";
|
||||
|
||||
export async function linkify(
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
import { setupVideo } from "./video.mjs?v=048af96";
|
||||
import { setupVideo } from "./video.mjs?v=ee93fb";
|
||||
import {
|
||||
setupChat,
|
||||
logEventToChat,
|
||||
updateViewerList,
|
||||
printChatMessage,
|
||||
} from "./chat.mjs?v=048af96";
|
||||
} from "./chat.mjs?v=ee93fb";
|
||||
import ReconnectingWebSocket from "./reconnecting-web-socket.mjs";
|
||||
import { state } from "./state.mjs";
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { setupJoinSessionForm } from "./lib/join-session.mjs?v=048af96";
|
||||
import { setupJoinSessionForm } from "./lib/join-session.mjs?v=ee93fb";
|
||||
|
||||
const main = () => {
|
||||
setupJoinSessionForm();
|
||||
|
|
Loading…
Reference in New Issue