update cache busting tag

votekiss
maia arson crimew 2022-02-18 19:50:38 +01:00
parent a6a856c6a5
commit d1d030ede6
8 changed files with 12 additions and 12 deletions

View File

@ -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>

View File

@ -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();

View File

@ -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>

View File

@ -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) {

View File

@ -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");

View File

@ -1,4 +1,4 @@
import { joinSession } from "./watch-session.mjs?v=19ef791";
import { joinSession } from "./watch-session.mjs?v=a6a856c";
/**
* @param {HTMLInputElement} field

View File

@ -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";
/**

View File

@ -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();