forked from lavender/watch-party
Update cache busting tag (again)
parent
1e57e6a615
commit
941949906d
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>watch party :D</title>
|
<title>watch party :D</title>
|
||||||
<link rel="stylesheet" href="/styles.css?v=e9a1b" />
|
<link rel="stylesheet" href="/styles.css?v=1e57e6" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -47,6 +47,6 @@
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="module" src="/create.mjs?v=e9a1b"></script>
|
<script type="module" src="/create.mjs?v=1e57e6"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { setupCreateSessionForm } from "./lib/create-session.mjs?v=e9a1b";
|
import { setupCreateSessionForm } from "./lib/create-session.mjs?v=1e57e6";
|
||||||
|
|
||||||
const main = () => {
|
const main = () => {
|
||||||
setupCreateSessionForm();
|
setupCreateSessionForm();
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>watch party :D</title>
|
<title>watch party :D</title>
|
||||||
<link rel="stylesheet" href="/styles.css?v=e9a1b" />
|
<link rel="stylesheet" href="/styles.css?v=1e57e6" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -64,6 +64,6 @@
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="module" src="/main.mjs?v=e9a1b"></script>
|
<script type="module" src="/main.mjs?v=1e57e6"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -2,8 +2,8 @@ import {
|
||||||
setDebounce,
|
setDebounce,
|
||||||
setVideoTime,
|
setVideoTime,
|
||||||
setPlaying,
|
setPlaying,
|
||||||
} from "./watch-session.mjs?v=e9a1b";
|
} from "./watch-session.mjs?v=1e57e6";
|
||||||
import { emojify, emojis } from "./emojis.mjs?v=e9a1b";
|
import { emojify, emojis } from "./emojis.mjs?v=1e57e6";
|
||||||
|
|
||||||
function insertAtCursor(input, textToInsert) {
|
function insertAtCursor(input, textToInsert) {
|
||||||
const isSuccess = document.execCommand("insertText", false, textToInsert);
|
const isSuccess = document.execCommand("insertText", false, textToInsert);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { createSession } from "./watch-session.mjs?v=e9a1b";
|
import { createSession } from "./watch-session.mjs?v=1e57e6";
|
||||||
|
|
||||||
export const setupCreateSessionForm = () => {
|
export const setupCreateSessionForm = () => {
|
||||||
const form = document.querySelector("#create-session-form");
|
const form = document.querySelector("#create-session-form");
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { joinSession } from "./watch-session.mjs?v=e9a1b";
|
import { joinSession } from "./watch-session.mjs?v=1e57e6";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {HTMLInputElement} field
|
* @param {HTMLInputElement} field
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import { setupVideo } from "./video.mjs?v=e9a1b";
|
import { setupVideo } from "./video.mjs?v=1e57e6";
|
||||||
import {
|
import {
|
||||||
setupChat,
|
setupChat,
|
||||||
logEventToChat,
|
logEventToChat,
|
||||||
updateViewerList,
|
updateViewerList,
|
||||||
} from "./chat.mjs?v=e9a1b";
|
} from "./chat.mjs?v=1e57e6";
|
||||||
import ReconnectingWebSocket from "./reconnecting-web-socket.mjs";
|
import ReconnectingWebSocket from "./reconnecting-web-socket.mjs";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { setupJoinSessionForm } from "./lib/join-session.mjs?v=e9a1b";
|
import { setupJoinSessionForm } from "./lib/join-session.mjs?v=1e57e6";
|
||||||
|
|
||||||
const main = () => {
|
const main = () => {
|
||||||
setupJoinSessionForm();
|
setupJoinSessionForm();
|
||||||
|
|
Loading…
Reference in New Issue